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

# List tokens

> Returns Sunrise-supported tokens on Solana.



## OpenAPI

````yaml https://api.sunrise.xyz/openapi get /v1/tokens
openapi: 3.1.0
info:
  title: Sunrise API
  description: Authenticated API for Sunrise.
  version: 1.0.0
servers:
  - url: https://api.sunrise.xyz
security:
  - bearerAuth: []
paths:
  /v1/tokens:
    get:
      tags:
        - Tokens
      summary: List tokens
      description: Returns Sunrise-supported tokens on Solana.
      operationId: getTokens
      parameters:
        - in: query
          name: cursor
          schema:
            type: string
            minLength: 1
            maxLength: 2048
            pattern: ^[A-Za-z0-9_-]+$
          description: Cursor returned by the previous page.
      responses:
        '200':
          description: Sunrise-supported tokens.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    enum:
                      - true
                    type: boolean
                  data:
                    type: object
                    properties:
                      count:
                        type: integer
                        minimum: 0
                        description: Number of tokens in this response.
                      tokens:
                        type: array
                        items:
                          type: object
                          properties:
                            chain:
                              type: string
                              description: Blockchain where the token is issued.
                            address:
                              type: string
                              description: Solana mint address.
                            symbol:
                              type: string
                              description: Token ticker symbol.
                            name:
                              type: string
                              description: Display name of the token.
                            decimals:
                              type: integer
                              minimum: 0
                              description: Number of decimal places used by the token.
                            platform:
                              type: string
                              description: Platform associated with the token.
                            assetClass:
                              type: string
                              description: Asset classification of the token.
                            issuer:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Issuer associated with the token, when
                                available.
                            icon:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Token icon URL, when available.
                            tokenProgram:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Solana token program address, when available.
                          required:
                            - chain
                            - address
                            - symbol
                            - name
                            - decimals
                            - platform
                            - assetClass
                            - issuer
                            - icon
                            - tokenProgram
                        description: Sunrise tokens.
                      pagination:
                        type: object
                        properties:
                          limit:
                            type: integer
                            minimum: 1
                            maximum: 200
                            description: Maximum number of tokens returned per page.
                          nextCursor:
                            anyOf:
                              - type: string
                              - type: 'null'
                            description: >-
                              Cursor for the next page, or null when no page
                              remains.
                        required:
                          - limit
                          - nextCursor
                    required:
                      - count
                      - tokens
                  timestamp:
                    type: string
                required:
                  - success
                  - data
                  - timestamp
        '400':
          description: Invalid query parameters.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    enum:
                      - false
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      requestId:
                        type: string
                    required:
                      - code
                      - message
                    additionalProperties: false
                  timestamp:
                    type: string
                required:
                  - success
                  - error
                  - timestamp
                additionalProperties: false
        '429':
          description: >-
            Rate limited: verification_rate_limited means the local verification
            budget was exceeded; rate_limited means Unkey quota or upstream
            throttling.
          headers:
            X-Sunrise-RateLimit-Scope:
              description: >-
                Local per-key verification budget exceeded; back off requests
                for this key.
              schema:
                type: string
                enum:
                  - key
            Retry-After:
              description: Seconds to wait; present for local verification throttling.
              schema:
                type: integer
                example: 60
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    enum:
                      - false
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        enum:
                          - verification_rate_limited
                          - rate_limited
                        type: string
                      message:
                        type: string
                      requestId:
                        type: string
                    required:
                      - code
                      - message
                    additionalProperties: false
                  timestamp:
                    type: string
                required:
                  - success
                  - error
                  - timestamp
                additionalProperties: false
        '502':
          description: Token service unavailable.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    enum:
                      - false
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      requestId:
                        type: string
                    required:
                      - code
                      - message
                    additionalProperties: false
                  timestamp:
                    type: string
                required:
                  - success
                  - error
                  - timestamp
                additionalProperties: false
        default:
          description: Token service error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    enum:
                      - false
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      requestId:
                        type: string
                    required:
                      - code
                      - message
                    additionalProperties: false
                  timestamp:
                    type: string
                required:
                  - success
                  - error
                  - timestamp
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````