v1

latestOpenAPI 3.0.32026-07-26282561.6 KB
Daily Emission

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.

get/v5/daily-emission/{tokenId}

Path parameters

tokenIdstring required

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

Query parameters

startstring date

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

endstring date

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

standardAllocationstring

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.

pageinteger

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

pageSizeinteger

Number of rows per page. Omit for default.

Response

Successful response

statusboolean

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
      }
    }
  ]
}