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

# Token Unlock Schedule



## OpenAPI

````yaml openapi.json GET /gateway/v1/token/tokenomics
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/token/tokenomics:
    get:
      tags:
        - Token
      summary: Token Unlock Schedule
      description: >-
        Returns token unlock time-series with amounts and allocation breakdowns.


        **Lookup:** by project UUID (`id`) or token `symbol`. Filter by date
        range with `from`/`to` — defaults to the current calendar month when
        omitted.


        Returns 404 if no token found.
      operationId: token-tokenomics
      parameters:
        - description: >-
            Surf project UUID. PREFERRED — always use this when available from a
            previous response. Takes priority over symbol.
          explode: false
          in: query
          name: id
          schema:
            description: >-
              Surf project UUID. PREFERRED — always use this when available from
              a previous response. Takes priority over symbol.
            examples:
              - 25c6612a-395c-4974-94eb-3b5f9f4b2ed7
            type: string
        - description: Token symbol like `ARB`, `OP`, or `APT`
          explode: false
          in: query
          name: symbol
          schema:
            description: Token symbol like `ARB`, `OP`, or `APT`
            examples:
              - ARB
            type: string
        - description: >-
            Start of time range. Accepts Unix seconds (`1704067200`) or date
            string (`2024-01-01`)
          explode: false
          in: query
          name: from
          schema:
            description: >-
              Start of time range. Accepts Unix seconds (`1704067200`) or date
              string (`2024-01-01`)
            examples:
              - '2024-01-01'
            type: string
        - description: >-
            End of time range. Accepts Unix seconds (`1735689600`) or date
            string (`2025-01-01`)
          explode: false
          in: query
          name: to
          schema:
            description: >-
              End of time range. Accepts Unix seconds (`1735689600`) or date
              string (`2025-01-01`)
            examples:
              - '2025-01-01'
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseTokenUnlockPoint'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseTokenUnlockPoint:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseTokenUnlockPoint.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/TokenUnlockPoint'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    TokenUnlockPoint:
      additionalProperties: false
      properties:
        allocations:
          description: Breakdown by allocation
          items:
            $ref: '#/components/schemas/TokenUnlockAllocationItem'
          type:
            - array
            - 'null'
        timestamp:
          description: Unix timestamp in seconds
          format: int64
          type: integer
        unlock_amount:
          description: >-
            Cumulative total tokens unlocked up to this timestamp
            (decimal-adjusted)
          format: double
          type: number
      required:
        - timestamp
        - unlock_amount
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object
    TokenUnlockAllocationItem:
      additionalProperties: false
      properties:
        amount:
          description: Decimal-adjusted allocation amount
          format: double
          type: number
        name:
          description: Allocation name
          type: string
      required:
        - name
        - amount
      type: object

````