Skip to main content
GET
/
v5
/
daily-emission
/
{tokenId}
Daily Emission v5
curl --request GET \
  --url https://api.tokenomist.ai/v5/daily-emission/{tokenId} \
  --header 'x-api-key: <api-key>'
{
  "metadata": {
    "queryDate": "2026-01-08T10:13:58Z",
    "page": 1,
    "pageSize": 50,
    "totalPages": 10,
    "total": 487
  },
  "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": "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
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tokenomist.ai/llms.txt

Use this file to discover all available pages before exploring further.

v5 update: Token identifier moves to a path param. Adds pagination (page, pageSize), optional standardAllocation filter, and committedClaim data per allocation and per row.

Authorizations

x-api-key
string
header
required

Your Tokenomist API key

Path Parameters

tokenId
string
required

Token identifier (slug). Get from Token List API.

Query Parameters

start
string<date>

Start date for time filtering (YYYY-MM-DD). Defaults to earliest available date.

end
string<date>

End date for time filtering (YYYY-MM-DD). Defaults to current date.

standardAllocation
string

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
integer

Page number (1-indexed). Omit for default.

Required range: x >= 1
pageSize
integer

Number of rows per page. Omit for default.

Required range: x >= 1

Response

200 - application/json

Successful response

metadata
object
status
boolean
data
object[]