Skip to main content
GET
/
v2
/
daily-emission
curl -X 'GET' \
  'https://api.unlocks.app/v2/daily-emission?tokenId=arbitrum&start=2024-01-08&end=2024-01-09' \
  -H 'x-api-key: $YOUR_API_KEY'
{
    "metadata": {
        "queryDate": "2026-01-08T10:19:12Z"
    },
    "status": true,
    "data": [
        {
            "startDate": "2024-01-08T00:00:00Z",
            "endDate": "2024-01-09T00:00:00Z",
            "tokenName": "Arbitrum",
            "tokenSymbol": "ARB",
            "listedMethod": "INTERNAL",
            "unlockAmount": 478781.65471694345,
            "unlockValue": 818716.6295659733,
            "referencePrice": 1.71,
            "allocations": [
                {
                    "allocationName": "Arbitrum DAO Treasury",
                    "standardAllocationName": "Reserve",
                    "unlockAmount": 478781.65471694345,
                    "unlockValue": 818716.6295659733
                }
            ],
            "totalCumulativeUnlockedAmount": 1527949623.5683928
        }
    ]
}
v2 update: Add Dynamic inflation rate. value might differ to v1 in some tokens v2 update: Provides more tokens that are listed with AI method. Add more field about listing method, see below for field description
Listing MethodDefinition
INTERNALThis token is listed and verified and cross checked across multiple sources by tokenomist
AIThis token has been listed using LLM assisted with single source.
EXTERNALThis token is listed directly by the project team. It is first-party data and comes solely from the project’s own source.

Query Parameters

tokenId
string
required
Token identifier. Get tokenId from Token List API
start
string
The start date for time filtering in the format YYYY-MM-DD. Defaults to the earliest available date.
end
string
The end date for time filtering in the format YYYY-MM-DD. Defaults to the current date.

Response

metadata
object
status
boolean
Request status
data
object[]
curl -X 'GET' \
  'https://api.unlocks.app/v2/daily-emission?tokenId=arbitrum&start=2024-01-08&end=2024-01-09' \
  -H 'x-api-key: $YOUR_API_KEY'
{
    "metadata": {
        "queryDate": "2026-01-08T10:19:12Z"
    },
    "status": true,
    "data": [
        {
            "startDate": "2024-01-08T00:00:00Z",
            "endDate": "2024-01-09T00:00:00Z",
            "tokenName": "Arbitrum",
            "tokenSymbol": "ARB",
            "listedMethod": "INTERNAL",
            "unlockAmount": 478781.65471694345,
            "unlockValue": 818716.6295659733,
            "referencePrice": 1.71,
            "allocations": [
                {
                    "allocationName": "Arbitrum DAO Treasury",
                    "standardAllocationName": "Reserve",
                    "unlockAmount": 478781.65471694345,
                    "unlockValue": 818716.6295659733
                }
            ],
            "totalCumulativeUnlockedAmount": 1527949623.5683928
        }
    ]
}