GET
/
analytics
/
stablecoins
/
information
Stablecoins Supported Assets & Insights
curl --request GET \
  --url https://api.amberdata.com/blockchains/analytics/stablecoins/information \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "data": [
      {
        "analytics": [
          "Transfers"
        ],
        "assetAddresses": [
          {
            "address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
            "blockchain": "arbitrum-mainnet",
            "decimals": 6
          },
          {
            "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
            "blockchain": "avalanche-mainnet",
            "decimals": 6
          },
          {
            "address": "0x55d398326f99059ff775485246999027b3197955",
            "blockchain": "bnb-mainnet",
            "decimals": 18
          },
          {
            "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
            "blockchain": "ethereum-mainnet",
            "decimals": 6
          },
          {
            "address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58",
            "blockchain": "optimism-mainnet",
            "decimals": 6
          },
          {
            "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
            "blockchain": "polygon-mainnet",
            "decimals": 6
          },
          {
            "address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
            "blockchain": "tron-mainnet",
            "decimals": 6
          }
        ],
        "assetName": "Tether USD",
        "assetSymbol": "USDT"
      }
    ],
    "metadata": {}
  }
}
If the blockchain query parameter is not provided, the API will return data from all of the supported chains.
Contract addresses for an asset are unique per blockchain. If you would like to see the analytics for a specific asset, say USDC across all chains, use the assetSymbol query parameter and omit the blockchain query parameter.

Authorizations

x-api-key
string
header
required

Query Parameters

assetSymbol
string

[optional] The symbol of the asset to filter the dataset by

blockchain
enum<string>

[optional] The name slug of the chain to filter the dataset by

Available options:
arbitrum-mainnet,
avalanche-mainnet,
base-mainnet,
bnb-mainnet,
ethereum-mainnet,
polygon-mainnet,
optimism-mainnet,
tron-mainnet

Response

200 - application/json

Successful request

The response is of type object.