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. Emission API

Emission API v1

PreviousEmission APINextEmission API v2

Last updated 7 months 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.

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/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/emission?tokenId=optimisim&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/emission?tokenId=optimisim' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

{
    "metadata": {
        "queryDate": "2024-06-24T13:31:20Z"
    },
    "status": true,
    "data": [
        {
            "startDate": "2023-06-25T00:00:00Z",
            "endDate": "2023-07-02T00:00:00Z",
            "tokenName": "Optimism",
            "tokenSymbol": "OP",
            "unlockAmount": 31341653,
            "unlockValue": 40744148.9,
            "referencePrice": 1.3,
            "allocations": [
                "Core Contributors",
                "Investors"
            ],
            "standardAllocations": [
                "Founder / Team",
                "Private Investors"
            ]
        },
        {
            "startDate": "2023-07-02T00:00:00Z",
            "endDate": "2023-07-09T00:00:00Z",
            "tokenName": "Optimism",
            "tokenSymbol": "OP",
            "unlockAmount": 0,
            "unlockValue": 0,
            "referencePrice": 1.34,
            "allocations": [],
            "standardAllocations": []
        },
        {
            "startDate": "2023-07-09T00:00:00Z",
            "endDate": "2023-07-16T00:00:00Z",
            "tokenName": "Optimism",
            "tokenSymbol": "OP",
            "unlockAmount": 1683000,
            "unlockValue": 2036430,
            "referencePrice": 1.21,
            "allocations": [
                "Governance Fund"
            ],
            "standardAllocations": [
                "Community"
            ]
        },
        {
            "startDate": "2023-07-16T00:00:00Z",
            "endDate": "2023-07-23T00:00:00Z",
            "tokenName": "Optimism",
            "tokenSymbol": "OP",
            "unlockAmount": 0,
            "unlockValue": 0,
            "referencePrice": 1.45,
            "allocations": [],
            "standardAllocations": []
        },
        ...
    ]
}

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

unlockAmount

number

Total Unlock amount within specified period

unlockValue

number

Total Unlock value within specified period

referencePrice

number

Reference price for unlockValue calculation

allocations

object array

Allocation name

standardAllocations

object array

Standard allocation of this allocation

tokenId (required): Get tokenId from

πŸ“ˆ
standard allocation
Token List API