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

# List Tokens

<RequestExample>
  ```bash cURL theme={null}
  curl --url https://try.flipt.io/auth/v1/tokens \
    --header 'Accept: application/json' \
    --header 'Authorization: Bearer {token}'
  ```
</RequestExample>


## OpenAPI

````yaml GET /auth/v1/tokens
openapi: 3.0.3
info:
  title: api
  version: 1.47.0
servers:
  - url: http://localhost:8080
security:
  - bearerAuth: []
tags:
  - name: AuthenticationMethodKubernetesService
  - name: AuthenticationMethodOIDCService
  - name: AuthenticationMethodTokenService
  - name: AuthenticationService
  - name: EvaluationService
  - name: Flipt
  - name: OFREPService
paths:
  /auth/v1/tokens:
    get:
      tags:
        - AuthenticationService
      operationId: listAuthTokens
      parameters:
        - name: method
          in: query
          schema:
            enum:
              - METHOD_NONE
              - METHOD_TOKEN
              - METHOD_OIDC
              - METHOD_KUBERNETES
              - METHOD_GITHUB
              - METHOD_JWT
              - METHOD_CLOUD
            type: string
            format: enum
        - name: limit
          in: query
          schema:
            type: integer
            format: int32
        - name: pageToken
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAuthenticationsResponse'
components:
  schemas:
    ListAuthenticationsResponse:
      type: object
      properties:
        authentications:
          type: array
          items:
            $ref: '#/components/schemas/Authentication'
        nextPageToken:
          type: string
    Authentication:
      type: object
      properties:
        id:
          type: string
        method:
          enum:
            - METHOD_NONE
            - METHOD_TOKEN
            - METHOD_OIDC
            - METHOD_KUBERNETES
            - METHOD_GITHUB
            - METHOD_JWT
            - METHOD_CLOUD
          type: string
          format: enum
        expiresAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        metadata:
          type: object
          additionalProperties:
            type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````