get_stablecoin_charts_by_chain
Track historical market capitalization of stablecoins on a specific blockchain. Input the chain slug to analyze stablecoin trends and gain insights into crypto market dynamics.
Instructions
GET /stablecoins/stablecoincharts/{chain}
Get historical mcap sum of all stablecoins in a chain.
Parameters:
chain: chain slug (e.g., 'Ethereum')
stablecoin: stablecoin ID (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | ||
stablecoin | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
},
"stablecoin": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Stablecoin"
}
},
"required": [
"chain"
],
"title": "get_stablecoin_charts_by_chainArguments",
"type": "object"
}