Tokenomist
  • Tokenomist
    • πŸ‘‹Introduction
    • ⭐Main Page
    • πŸ”ŽToken Page
      • πŸ“Cliff, Linear, and Emission
      • πŸ”’TBD Locked
      • 🎯Precision & Assumption
  • Tokenomist Pro
    • πŸ‘‘Tokenomist Pro
    • ↗️Token Emission
    • πŸ“ŠStandard Allocation
    • πŸ†Pro Chart
      • πŸ’²Price Analysis
      • 🫳Post Unlocks Analysis
    • πŸ“…Unlock Events
    • πŸ—οΈETH Unlocks
  • API Documents
    • πŸ’»Introduction
    • API Endpoints
      • πŸ“”Token List API
        • Token List API v1
        • Token List API v2
      • πŸ“ˆEmission API
        • Emission API v1
        • Emission API v2
        • Emission API v3
      • πŸ“ˆAllocations API
        • Allocations API v1
        • Allocations API v2
      • πŸ“ˆUnlock Events API
        • Unlock Events API v1
        • Unlock Events API v2
        • Unlock Events API v3
      • πŸ“ˆDaily Emission API
        • Daily Emission API v1
        • Daily Emission API v2
    • CSV Export
  • About us
    • πŸ”­Who we are
    • πŸ“¬Contact
    • πŸ“’Press/ Media Kit
    • πŸ‘₯Team
  • Miscellaneous
    • πŸ“–Tokenomist Methodologies
    • ❗Disclaimer
    • ⚠️Data Update Policy
    • πŸ“œToken Listing Criteria
    • ❓FAQ
    • πŸ”—Official Links
Powered by GitBook
On this page
  • Getting Started
  • Endpoints: Emission API v3
  1. API Documents
  2. API Endpoints
  3. Emission API

Emission API v3

PreviousEmission API v2NextAllocations API

Last updated 18 days ago

Overview

A weekly aggregated emission per token. The start date is expected to be a Sunday and end date a Saturday. This will include both linear and cliff unlocks that happened in the specified week.

Included is the breakdown of beneficiaries into , a Tokenomistℒ️ methodology for categorizing and grouping allocations from different projects into a comparable standard.

⬆️ v3 update: Provides more tokens that are listed with AI method. Add more field about listing method, see below for field description

Listing Method
Definition

Human

This token is listed and verified and cross checked across multiple sources by tokenomist

AI

This token has been listed using LLM assisted with single source.

Getting Started

Base URL

https://api.unlocks.app

Authentication

Provide your api key in the x-api-key header.

GET https://api.unlocks.app/v3/emission
HEADER: x-api-key: <YOUR_API_KEY>

Endpoints: Emission API v3

Parameters

Note: tokenID needs to be specified.

  • start (optional): The start date for time filtering in the format YYYY-MM-DD. Defaults to the earliest available date.

  • end (optional): The end date for time filtering in the format YYYY-MM-DD. Defaults to the current date.

Get Specific Date Range Example:

Replace the preferred start and end dates in indicated format.

Including breakdown of : allocationName, standardAllocationName, unlockAmount, unlockValue, and totalCumulativeUnlockedAmount. See below for each field definitions.

curl -X 'GET' \
  'https://api.unlocks.app/v3/emission?tokenId=arbitrum&start=YYYY-MM-DD&end=YYYY-MM-DD' \
  -H 'x-api-key: $YOUR_API_KEY'

Get Full Data Range Example:

Remove date completely to call the full range.

curl -X 'GET' \
  'https://api.unlocks.app/v3/emission?tokenId=arbitrum' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

{
                "startDate": "2026-10-11T00:00:00Z",
                "endDate": "2026-10-18T00:00:00Z",
                "tokenName": "Arbitrum",
                "tokenSymbol": "ARB",
                "listedMethod": "Human",
                "unlockAmount": 95997304.55646817,
                "unlockValue": 52539420.78105959,
                "referencePrice": 0.547301,
                "allocations": [
                  {
                    "allocationName": "Team, Future Team + Advisors",
                    "standardAllocationName": "Founder / Team",
                    "unlockAmount": 56125000,
                    "unlockValue": 30717268.625000004
                  },
                  {
                    "allocationName": "Investors",
                    "standardAllocationName": "Private Investors",
                    "unlockAmount": 36520833,
                    "unlockValue": 19987888.421733003
                  },
                  {
                    "allocationName": "Arbitrum DAO Treasury",
                    "standardAllocationName": "Reserve",
                    "unlockAmount": 3351471.556468172,
                    "unlockValue": 1834263.734326587
                  }
                ],
                "totalCumulativeUnlockedAmount": 6046002268.244544
              }
}

The response includes time series data with the date (in UTC timezone), with granularity at the level of week.

Return Fields Explanation

Fields
Data Type
Description

startDate

timestamp

Start date of the aggregated emission

endDate

timestamp

End date of the aggregated emission

tokenName

string

Token name

tokenSymbol

string

Token symbol

listedMethod

string

Human/AI

unlockAmount

number

Total Unlock amount in date period

unlockValue

number

Total unlock value in date period

referencePrice

number

Reference price for unlockValue calculation

allocations

object array

Expand allocation details

allocationName

string

Allocation name

standardAllocationName

string

Standard allocation of this allocation

totalCumulativeUnlockedAmount

number

Total unlocked amount from token TGE till specified endDate

tokenId (required): Get tokenId from

πŸ“ˆ
standard allocation
Token List API