Skip to main content

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

ParameterTypeRequiredDescription
stablecoinstringyesSpecifies the stablecoin name.
chainstringnoSpecifies the blockchain name.

Response Status Codes

StatusDescription
200 OKSuccess. Returns the stablecoin market capitalization data.
400 Bad RequestMissing 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"
],
...
]