DefiLlama Stablecoin Market Cap
/api/v1/defillama/stablecoin/mcap
Description
Get historical stablecoin market capitalization for given stablecoin and chain parameters.
Method
GET
Source
Database
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
stablecoin | string | yes | Specifies the stablecoin name. |
chain | string | no | Specifies the blockchain name. |
Response Status Codes
Status | Description |
---|---|
200 OK | Success. Returns the stablecoin market capitalization data. |
400 Bad Request | Missing required parameter. |
Example: Get historical market capitalization of USDT
Request
GET /api/v1/defillama/stablecoin/mcap?stablecoin=USDT
Response
[
[
"Date",
"TotalBridgedToUSD",
"TotalMintedUSD",
"TotalCirculatingUSD",
"TotalUnreleased"
],
[
"12/31/2020 00:00:00",
"0.000000",
"0.000000",
"20953468827.689999",
"0.000000"
],
[
"01/01/2021 00:00:00",
"0.000000",
"0.000000",
"20935116985.490002",
"0.000000"
],
[
"01/02/2021 00:00:00",
"0.000000",
"0.000000",
"21165735737.930000",
"0.000000"
],
...
]
Example: Get historical market capitalization of LUSD on BSC chain
Request
GET /api/v1/defillama/stablecoin/mcap?stablecoin=LUSD&chain=BSC
Response
[
[
"Date",
"TotalBridgedToUSD",
"TotalMintedUSD",
"TotalCirculatingUSD",
"TotalUnreleased"
],
[
"04/05/2021 00:00:00",
"0.000000",
"0.000000",
"0.000000",
"0.000000"
],
[
"04/06/2021 00:00:00",
"0.000000",
"0.000000",
"0.000000",
"0.000000"
],
[
"04/07/2021 00:00:00",
"0.000000",
"0.000000",
"0.000000",
"0.000000"
],
[
"04/08/2021 00:00:00",
"0.000000",
"0.000000",
"0.000000",
"0.000000"
],
...
]