> ## 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.

# Unlock Events API v1

> Timestamp information of the unlock events start date

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


## OpenAPI

````yaml GET /v1/unlock/events
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/unlock/events:
    get:
      tags:
        - Unlock Events
      summary: Unlock Events v1
      description: Timestamp information of the unlock events start date.
      operationId: getUnlockEventsV1
      parameters:
        - name: tokenId
          in: query
          required: true
          schema:
            type: string
          example: arbitrum
        - name: start
          in: query
          required: false
          schema:
            type: string
            format: date
        - name: end
          in: query
          required: false
          schema:
            type: string
            format: date
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    $ref: '#/components/schemas/Metadata'
                  status:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        unlockDate:
                          type: string
                          format: date-time
                          example: '2024-09-16T13:00:00Z'
                        tokenName:
                          type: string
                          example: Arbitrum
                        tokenSymbol:
                          type: string
                          example: ARB
                        dataSource:
                          type: string
                          example: Whitepaper
                        linearUnlocks:
                          $ref: '#/components/schemas/LinearUnlocks'
                        cliffUnlocks:
                          $ref: '#/components/schemas/CliffUnlocks'
                        latestUpdateDate:
                          type: string
                          format: date-time
                          example: '2024-06-11T08:49:27Z'
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'
    LinearUnlocks:
      type: object
      nullable: true
      properties:
        linearAmount:
          type: number
          description: Linear Unlocks Amount Denominated in Token
          example: 5000000
        linearValue:
          type: number
          description: Linear Unlocks Amount Denominated in USD
          example: 2694655
        dailyAmount:
          type: number
          description: Daily Linear Unlocks Amount Denominated in Token
          example: 16666.67
        dailyValue:
          type: number
          description: Daily Linear Unlocks Amount Denominated in USD
          example: 8982.18
        referencePrice:
          type: number
          example: 0.538931
        referencePriceUpdatedTime:
          type: string
          format: date-time
          example: '2024-08-19T07:30:24Z'
        allocationBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/LinearAllocationBreakdown'
    CliffUnlocks:
      type: object
      properties:
        cliffAmount:
          type: number
          description: Total Unlock Amount Denominated in token
          example: 92645833.29999995
        cliffValue:
          type: number
          description: Total Unlock Value Denominated in USD
          example: 49929711.58620228
        valueToMarketCap:
          type: number
          description: Value / M.Cap in Percentage
          example: 2.7744266354166256
        allocationBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/CliffAllocationBreakdown'
    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'
    LinearAllocationBreakdown:
      type: object
      properties:
        allocationName:
          type: string
          example: Investors
        standardAllocationName:
          type: string
          example: Private Investors
        linearAmount:
          type: number
          description: Total Linear Unlocks Amount in token
          example: 5000000
        linearValue:
          type: number
          description: Total Linear Unlocks Value in USD
          example: 2694655
        referencePrice:
          type: number
          example: 0.538931
        referencePriceUpdatedTime:
          type: string
          format: date-time
          example: '2024-08-19T07:30:24Z'
        dailyAmount:
          type: number
          example: 16666.67
        dailyValue:
          type: number
          example: 8982.18
        durationOfRate:
          type: number
          description: Duration of Linear Rate
          example: 300
        beginDate:
          type: string
          format: date-time
          example: '2024-03-16T13:00:00Z'
        endDate:
          type: string
          format: date-time
          example: '2025-01-16T13:00:00Z'
        unlockPrecision:
          type: string
          example: second
    CliffAllocationBreakdown:
      type: object
      properties:
        unlockDate:
          type: string
          format: date-time
          description: Cliff unlock date
          example: '2024-09-16T13:00:00Z'
        allocationName:
          type: string
          description: Allocation Name
          example: Investors
        standardAllocationName:
          type: string
          description: Standard allocation of this allocation
          example: Private Investors
        cliffAmount:
          type: number
          description: Unlock Amount Denominated in Token
          example: 36520833.29999995
        cliffValue:
          type: number
          description: Unlock Value Denominated in USD
          example: 19682209.211202275
        referencePrice:
          type: number
          description: Reference Price used in total unlocks value calculation
          example: 0.538931
        referencePriceUpdatedTime:
          type: string
          format: date-time
          description: Reference Price Last Updated Time
          example: '2024-08-19T07:30:24Z'
        unlockPrecision:
          type: string
          description: >-
            Precision of Unlock. Example: second, hour, day, week, unknown(for
            AI listed token only), etc
          example: month
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Tokenomist API key

````