Tokenomist
  • Tokenomist
    • 👋Welcome to Tokenomist
    • ⭐Token Unlocks Page
    • 🔎Token Page
      • 📐Cliff, Linear, and Emission
      • 🔒TBD Locked
      • 🎯Precision & Assumption
  • Tokenomist Pro
    • 👑Tokenomist Pro
    • ↗️Token Emission
    • 📊Standard Allocation
    • 📦Release Mechanism
    • 🏆Pro Chart
      • 💲Price Analysis
      • 🫳Post Unlocks Analysis
    • 📅Unlock Events
    • 💸Fundraising Analytics
      • 📊Fundraising Screener
        • Key Metrics Explained
        • Understand Funding Stages
      • 📊Fundraising detail page
        • Fundraising insight bar chart
        • Funding Rounds, Valuation, Investors Table
      • 💡Use cases
    • 📁CSV Export
  • API Documents
    • 💻Introduction
    • API Endpoints
      • 📔Token List API
        • Token List API v1
        • Token List API v2
      • 📈Weekly Emission API
        • Weekly Emission API v1
        • Weekly Emission API v2
        • Weekly 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
  • About us
    • 🔭Who we are
    • 📬Contact Us
    • 📢Press/ Media Kit
    • 👥Tokenomist Team Verification
  • Miscellaneous
    • 📖Tokenomist Methodologies
    • ❗Disclaimer
    • ⚠️Data Update Policy
    • 📜Token Listing Criteria
    • ❓FAQ
    • 🔗Official Links
Powered by GitBook
On this page
  1. API Documents
  2. API Endpoints
  3. 📈Daily Emission API

Daily Emission API v2

PreviousDaily Emission API v1NextWho we are

Last updated 1 month ago

CtrlK
  • Getting Started
  • Endpoints: Emission API v1

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 [email protected])

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

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

Listing Method
Definition

INTERNAL

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.

EXTERNAL

This token is listed directly by the project team. It is first-party data and comes solely from the project's own 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/v2/daily-emission
HEADER: x-api-key: <YOUR_API_KEY>

Endpoints: Emission API v1

Parameters

Note: tokenID needs to be specified.

  • tokenId (required): Get tokenId from Token List API

  • 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/v2/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/v2/daily-emission?tokenId=arbitrum' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

{
            "startDate": "2024-08-20T00:00:00Z",
            "endDate": "2024-08-21T00:00:00Z",
            "tokenName": "Arbitrum",
            "listedMethod": "INTERNAL",
            "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

listedMethod

string

Method of listing(INTERNAL, AI, EXTERNAL)

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

totalCumulativeUnlockedAmount

number

Total unlocked amount from token TGE till specified endDate

Return Fields Explanation: Allocations

Fields
Data Type
Description

allocationName

string

Allocation name

standardAllocationName

string

Standard allocation of this allocation

unlockedAmount

number

Total Unlock amount in date period

unlockedValue

number

Total unlock value in date period