Daily Emission v5
Daily emission per token. v5 moves tokenId to a path param, adds pagination, adds optional standardAllocation filter, and adds committedClaim data per allocation and per row.
Path parameters
Token identifier (slug). Get from Token List API.
Query parameters
Start date for time filtering (YYYY-MM-DD). Defaults to earliest available date.
End date for time filtering (YYYY-MM-DD). Defaults to current date.
Comma-separated list of standard allocations to filter by. Allowed values: community, founderTeam, privateInvestors, publicInvestors, others, reserve. Aggregates (unlockAmount, unlockValue, totalCumulativeUnlockedAmount) are recalculated from the filtered allocations.
Page number (1-indexed). Omit for default.
Number of rows per page. Omit for default.
Response
Successful response
Example response
{
"metadata": {
"queryDate": "2026-01-08T10:13:58Z",
"credit": {
"used": 213,
"limit": 300,
"resetAt": "2026-08-01T00:00:00Z"
},
"page": 1,
"pageSize": 50,
"totalPages": 10,
"total": 487
},
"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": "Investors",
"standardAllocationName": "Private Investors",
"unlockAmount": 478781.65471694345,
"unlockValue": 818716.6295659733,
"committedClaim": {
"amount": 1234567.89,
"value": 987654.32,
"timestamp": 1735689600
}
}
],
"totalCumulativeUnlockedAmount": 1527949623.5683928,
"committedClaim": {
"amount": 1234567.89,
"value": 987654.32,
"timestamp": 1735689600
}
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.