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 v1
  1. API Documents
  2. API Endpoints
  3. Daily Emission API

Daily Emission API v1

PreviousDaily Emission APINextDaily Emission API v2

Last updated 6 months ago

Available for Elite API users only.

Overview

This dataset provides daily emission data per token which summarizes all unlocks happening each day. This includes both linear and cliff unlocks that occurs within the next 60 days from the current date. (Only future 60 days of Daily emission is included in Elite API, for historical dataset or longer timeframe, please contact us support@token.unlocks.app)

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

Getting Started

Base URL

https://api.unlocks.app

Authentication

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

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

Endpoints: Emission API v1

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.

curl -X 'GET' \
  'https://api.unlocks.app/v1/daily-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/v1/daily-emission?tokenId=arbitrum' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

{
    "metadata": {
        "queryDate": "2024-08-20T04:53:46Z"
    },
    "status": true,
    "data": [
        {
            "startDate": "2024-08-20T00:00:00Z",
            "endDate": "2024-08-21T00:00:00Z",
            "tokenName": "Arbitrum",
            "tokenSymbol": "ARB",
            "unlockAmount": 478781.65092402464,
            "unlockValue": 259053.43030216015,
            "referencePrice": 0.541068,
            "allocations": [
                {
                    "allocationName": "Arbitrum DAO Treasury",
                    "standardAllocationName": "Reserve",
                    "unlockAmount": 478781.65092402464,
                    "unlockValue": 259053.43030216015
                }
            ],
            "totalCumulativeUnlockedAmount": 3259930660.716421
        },
        ....
    ]
}

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

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

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

allocationName

string

Allocation name

standardAllocationName

string

Standard allocation of this allocation

unlockAmount

number

Total Unlock amount in date period

unlockValue

number

Total unlock value in date period

totalCumulativeUnlockedAmount

number

Total unlocked amount from token TGE till specified endDate

tokenId (required): Get tokenId from

📈
standard allocation
Token List API