> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flexslot.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# Read metadata for the calling PAT

> Returns the metadata of the Personal Access Token used to authenticate this request. Never returns the user's other tokens — this is intentionally narrower than the internal Settings UI list. Never exposes the token hash or plaintext.



## OpenAPI

````yaml /openapi.json get /api/public/v1/me/access-tokens/
openapi: 3.0.3
info:
  title: Flexslot API
  version: 1.0.0
  description: API documentation for Flexslot decks application
servers:
  - url: https://api.flexslot.gg
    description: Production
  - url: https://api-dev.flexslot.gg
    description: Development
security: []
paths:
  /api/public/v1/me/access-tokens/:
    get:
      tags:
        - Me
      summary: Read metadata for the calling PAT
      description: >-
        Returns the metadata of the Personal Access Token used to authenticate
        this request. Never returns the user's other tokens — this is
        intentionally narrower than the internal Settings UI list. Never exposes
        the token hash or plaintext.
      operationId: me_access_tokens_self
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PatOutput'
          description: ''
      security:
        - PersonalAccessToken: []
        - OAuth2Bearer: []
components:
  schemas:
    PatOutput:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          maxLength: 255
        token_prefix:
          type: string
          maxLength: 12
        scopes:
          type: array
          items:
            type: string
        last_used_at:
          type: string
          format: date-time
          nullable: true
        expires_at:
          type: string
          format: date-time
          nullable: true
        revoked_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
      required:
        - created_at
        - id
        - name
        - scopes
        - token_prefix
  securitySchemes:
    PersonalAccessToken:
      type: http
      scheme: bearer
      bearerFormat: flx_pat_...
      description: 'User-issued personal access token (format: flx_pat_<token>).'
    OAuth2Bearer:
      type: http
      scheme: bearer
      bearerFormat: flx_at_...
      description: >-
        OAuth2 access token issued via the authorization-code + PKCE flow
        (format: flx_at_<token>). Grants the partner user-scoped access to act
        on behalf of the consenting end-user.

````