---
title: "Daily Emission v5"
method: GET
path: "/v5/daily-emission/{tokenId}"
tags: ["Daily Emission"]
---

# Daily Emission v5

`GET /v5/daily-emission/{tokenId}`

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

- `tokenId` string, required

## Query parameters

- `start` string, date
- `end` string, date
- `standardAllocation` string
- `page` integer
- `pageSize` integer

## Response `200`

Successful response

- object
  - `metadata` PaginatedMetadata
    - `queryDate` string, date-time — Timestamp of the query
    - `credit` Credit — Optional quota state for the calling account, returned on most authenticated responses (both success and error). Treat it as optional: it may be absent on unauthenticated requests, demo/playground responses, and briefly right after a monthly reset. `used` is near-real-time and may lag the true count by a request or two.
      - `used` integer — Requests counted in the current window (approximate / eventually consistent).
      - `limit` integer — The plan's request quota for the window.
      - `resetAt` string, date-time — When the quota resets (RFC3339 UTC). Present for monthly plans; absent for lifetime-quota plans.
    - `page` integer — Current page number (1-indexed)
    - `pageSize` integer — Number of items per page
    - `totalPages` integer — Total number of pages available for the current query
    - `total` integer — Total number of items across all pages
  - `status` boolean
  - `data` EmissionBreakdownV5[]
    - `startDate` string, date-time
    - `endDate` string, date-time
    - `tokenName` string
    - `tokenSymbol` string
    - `listedMethod` 'INTERNAL' | 'AI' | 'EXTERNAL'
    - `unlockAmount` number — Total unlock amount for the row, denominated in token
    - `unlockValue` number — Total unlock value for the row, denominated in USD
    - `referencePrice` number
    - `allocations` EmissionAllocationV5[]
      - `allocationName` string — Allocation Name
      - `standardAllocationName` string, nullable — Standard allocation of this allocation
      - `unlockAmount` number — Unlock amount denominated in token
      - `unlockValue` number — Unlock value denominated in USD
      - `committedClaim` CommittedClaim, nullable — Committed claim information for the allocation. Null when no committed claim data is available.
        - `amount` number, nullable — Committed claim amount denominated in token
        - `value` number, nullable — Committed claim value denominated in USD
        - `timestamp` integer, nullable — Unix timestamp of the committed claim
    - `totalCumulativeUnlockedAmount` number — Running cumulative unlocked amount across the response
    - `committedClaim` CommittedClaim, nullable — Committed claim information for the allocation. Null when no committed claim data is available.
      - `amount` number, nullable — Committed claim amount denominated in token
      - `value` number, nullable — Committed claim value denominated in USD
      - `timestamp` integer, nullable — Unix timestamp of the committed claim

---

[API](https://skmtc.net/tokenomist/apis/tokenomist-api.md) · [All operations](https://skmtc.net/tokenomist/apis/tokenomist-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tokenomist/tokenomist-api/revisions/1d812f25c55a/schema)
