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

# Upcoming Unlock Events API v1

> Timestamp information of upcoming unlock events, sorted by upcoming time

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

This endpoint is the timestamp information of the upcoming unlock events. This dataset is the same scheme to [Unlock Events API](/api-documents/unlock-events/v4) but sort by upcoming time, similar [Homepage](https://tokenomist.ai/?preset=default-all_unlocks)


## OpenAPI

````yaml GET /v1/unlock/events/upcoming
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/upcoming:
    get:
      tags:
        - Upcoming Unlock Events
      summary: Upcoming Unlock Events
      description: Upcoming unlock events sorted by upcoming time, similar to Homepage.
      operationId: getUpcomingUnlockEvents
      parameters:
        - name: minMarketCap
          in: query
          required: false
          description: Filter out tokens below a certain market cap
          schema:
            type: number
        - name: minReleasedPercentage
          in: query
          required: false
          description: >-
            Filter out tokens below a certain percentage of released supply from
            0-100
          schema:
            type: number
        - name: minUnlockDate
          in: query
          required: false
          description: >-
            Start date for time filtering (YYYY-MM-DD). Defaults to earliest
            available date.
          schema:
            type: string
            format: date
        - name: maxUnlockDate
          in: query
          required: false
          description: >-
            End date for time filtering (YYYY-MM-DD). Defaults to furthest
            available date.
          schema:
            type: string
            format: date
        - name: minTotalUnlockAmount
          in: query
          required: false
          description: Filter out unlocks below a certain amount
          schema:
            type: number
        - name: minValueToMarketCap
          in: query
          required: false
          description: Filter out unlocks below a certain value market cap from 0-100
          schema:
            type: number
        - name: standardAllocation
          in: query
          required: false
          description: >-
            Filter the receiver's allocation. Multi-select: community,
            founderTeam, privateInvestors, publicInvestors, reserve, others
          schema:
            type: string
      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:
                        tokenId:
                          type: string
                          example: layerzero
                        tokenName:
                          type: string
                          example: LayerZero
                        tokenSymbol:
                          type: string
                          example: ZRO
                        marketCap:
                          type: number
                          nullable: true
                          example: 278811255
                        releasedPercentage:
                          type: number
                          example: 35.2833333550565
                        listedMethod:
                          type: string
                          example: INTERNAL
                        dataSource:
                          type: string
                          example: Whitepaper
                        upcomingEvent:
                          type: object
                          properties:
                            unlockDate:
                              type: string
                              format: date-time
                              example: '2025-11-20T11:00:00Z'
                            referencePrice:
                              type: number
                              example: 1.4
                            referencePriceUpdatedTime:
                              type: string
                              format: date-time
                              example: '2025-11-20T00:00:00Z'
                            cliffUnlocks:
                              type: object
                              properties:
                                totalCliffAmount:
                                  type: number
                                  example: 25708332.666
                                totalCliffValue:
                                  type: number
                                  example: 35991665.7324
                                valueToMarketCap:
                                  type: number
                                  example: 12.908971602455575
                                allocationBreakdown:
                                  type: array
                                  items:
                                    $ref: >-
                                      #/components/schemas/CliffAllocationBreakdown
                            latestUpdateDate:
                              type: string
                              format: date-time
                              example: '2025-06-13T07:30:52Z'
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'
    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
    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

````