Skip to Content
APIDeep AnalysisGet Stablecoin Circulation Trend Chart

Get Stablecoin Circulation Trend Chart

1. Overview & Typical Use

Returns daily total supply, mint amount, and burn amount for a specified stablecoin. Supported stablecoins: USDD, USDC, USDJ, TUSD.

  • Typical use: individual stablecoin supply change analysis, mint/burn history tracking.
  • When not to use: to query supply changes for all stablecoins, use “Get All Stablecoin Issuance Change Chart”.

2. Endpoint & Authentication

GET /api/stableCoin/tokenSupply/turnover

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
tokenAddressstringYesStablecoin contract address; supports USDD, USDC, USDJ, TUSD
startTimeintegerNoStart time in seconds; earliest 2022-11-22
endTimeintegerNoCurrent timeEnd time in seconds

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
statisticsarrayRequiredDaily supply data array
tokenDecimalintegerRequiredToken decimals

statistics[] element

FieldTypeRequiredDescriptionUnit/Precision
datestringRequiredDate string in yyyy-MM-dd format
totalSupplystringRequiredDaily total supply (raw integer in smallest unit, returned as string to prevent overflow)See top-level tokenDecimal
mintAmountnumberOptionalDaily mint amount (minimum unit)minimum unit
burnAmountnumberOptionalDaily burn amount (minimum unit)minimum unit

5. Errors

For HTTP status codes, see Common Errors. Key points for this endpoint:

  • Unsupported token address: returns {"message":"some parameters are invalid or out of range"}.
  • Empty result is not an error: returns 200 + statistics: [] as a normal response.
Last updated on: