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

# Token List API v1

> Get a list of all tokenID to use for calling following API's

<Warning>
  This documents the **v1** endpoint, kept for existing integrations. The current version is [token-list v5](/api-documents/token-list/v5). New integrations should use v5.
</Warning>

Start here to get a list of all tokenID to use for calling following API's. You can then use the required tokenID to call each endpoint.


## OpenAPI

````yaml GET /v1/token/list
openapi: 3.0.3
info:
  title: Tokenomist API
  description: >-
    Comprehensive time series data for crypto token unlocks, emissions,
    allocations, fundraising, burns, and buybacks.
  version: 1.0.0
servers:
  - url: https://api.tokenomist.ai
security:
  - apiKey: []
paths:
  /v1/token/list:
    get:
      tags:
        - Token List
      summary: Token List v1
      description: Get list of all tokens available.
      operationId: getTokenListV1
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    $ref: '#/components/schemas/Metadata'
                  status:
                    type: boolean
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/TokenListV1Item'
components:
  schemas:
    Metadata:
      type: object
      properties:
        queryDate:
          type: string
          format: date-time
          description: Timestamp of the query
          example: '2026-01-08T10:13:58Z'
        credit:
          $ref: '#/components/schemas/Credit'
    TokenListV1Item:
      type: object
      properties:
        id:
          type: string
          example: optimism
        name:
          type: string
          example: Optimism
        symbol:
          type: string
          example: OP
        circulatingSupply:
          type: number
          nullable: true
          example: 1187596466
        marketCap:
          type: number
          nullable: true
          example: 1603255229.1000001
        maxSupply:
          type: number
          nullable: true
          example: 4294967296
        totalLockedAmount:
          type: number
          example: 856358024.1999991
        tbdLockedAmount:
          type: number
          example: 2231937452
        unlockedAmount:
          type: number
          example: 1206671819.0000002
        untrackedAmount:
          type: number
          example: 0.8000006675720215
        hasStandardAllocation:
          type: boolean
          example: true
        websiteUrl:
          type: string
          example: https://tokenomist.ai/optimism
        lastUpdatedDate:
          type: string
          format: date-time
          example: '2024-06-18T09:07:49Z'
    Credit:
      type: object
      description: >-
        Optional quota state for the calling account, returned on most
        authenticated responses (both success and error). Treat it as optional:
        it may be absent on unauthenticated requests, demo/playground responses,
        and briefly right after a monthly reset. `used` is near-real-time and
        may lag the true count by a request or two.
      properties:
        used:
          type: integer
          description: >-
            Requests counted in the current window (approximate / eventually
            consistent).
          example: 213
        limit:
          type: integer
          description: The plan's request quota for the window.
          example: 300
        resetAt:
          type: string
          format: date-time
          description: >-
            When the quota resets (RFC3339 UTC). Present for monthly plans;
            absent for lifetime-quota plans.
          example: '2026-08-01T00:00:00Z'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Tokenomist API key

````