Skip to main content
GET
/
v3
/
token-unlocks
/
daily-emission
Daily token emission across all coins
curl --request GET \
  --url https://api.cryptorank.io/v3/token-unlocks/daily-emission \
  --header 'X-Api-Key: <api-key>'
[
  {
    "date": 1748131200000,
    "totalEmissionUsd": "125400000",
    "byCurrency": [
      {
        "currencyId": 28,
        "currencySymbol": "ETH",
        "currencyName": "Ethereum",
        "currencyImages": {
          "icon": "<string>",
          "x60": "<string>",
          "x150": "<string>",
          "native": "<string>"
        },
        "tokenAmount": "1250000",
        "usdAmount": "4625000"
      }
    ],
    "byCategory": [
      {
        "categoryId": 12,
        "categorySlug": "gaming",
        "categoryName": "Gaming",
        "usdAmount": "4625000"
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

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

Authorizations

X-Api-Key
string
header
required

Query Parameters

from
string
required

Range start, inclusive (ISO 8601 or Unix timestamp). Truncated to UTC calendar day.

Example:

"2026-05-25"

to
string
required

Range end, inclusive (ISO 8601 or Unix timestamp). Truncated to UTC calendar day. Maximum span between from and to is 365 days.

Example:

"2026-06-25"

groupBy
enum<string>
default:total

Aggregation grouping inside each daily bucket: total returns only the cross-currency USD total per day; currency adds a per-coin breakdown under byCurrency; category adds a per-category breakdown under byCategory (coins without a category are excluded from the breakdown but still contribute to the total).

Available options:
total,
currency,
category

Response

200 - application/json
date
number
required

Bucket start date — Unix epoch milliseconds at UTC midnight of the calendar day.

Example:

1748131200000

totalEmissionUsd
string
required

USD value of all token unlocks across the requested coin set on date, computed at the current coin price and rounded to whole dollars. Coins with no current price do not contribute.

Example:

"125400000"

byCurrency
object[]

Per-coin breakdown of unlocks on date. Present only when groupBy=currency. Sorted by currencyId ascending.

byCategory
object[]

Per-category breakdown of unlocks on date. Present only when groupBy=category. Sorted by categoryId ascending. Coins without an assigned category are excluded from this breakdown but still contribute to totalEmissionUsd.