GET
/
networks
/
{network}
/
tokens
/
{address}
Token Data by Token Address
curl --request GET \
  --url https://api.coingecko.com/api/v3/onchain/networks/{network}/tokens/{address} \
  --header 'x-cg-demo-api-key: <api-key>'
{
  "data": {
    "id": "eth_0xdac17f958d2ee523a2206206994597c13d831ec7",
    "type": "token",
    "attributes": {
      "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
      "name": "Tether USD",
      "symbol": "USDT",
      "image_url": "https://assets.coingecko.com/coins/images/325/small/Tether.png?1696501661",
      "coingecko_coin_id": "tether",
      "decimals": 6,
      "total_supply": "49999156520373530.0",
      "normalized_total_supply": "49999156520.37353",
      "price_usd": "0.99720157",
      "fdv_usd": "49859223957",
      "total_reserve_in_usd": "417994486.4342195821530162288",
      "volume_usd": {
        "h24": "814387053.106936"
      },
      "market_cap_usd": "106918274170.211"
    },
    "relationships": {
      "top_pools": {
        "data": [
          {
            "id": "eth_0xbebc44782c7db0a1a60cb6fe97d0b483032ff1c7",
            "type": "pool"
          },
          {
            "id": "eth_0x3416cf6c708da44db2624d63ea0aaef7113527c6",
            "type": "pool"
          },
          {
            "id": "eth_0x11b815efb8f581194ae79006d24e0d814b7697f6",
            "type": "pool"
          }
        ]
      }
    }
  },
  "included": [
    {
      "id": "eth_0xbebc44782c7db0a1a60cb6fe97d0b483032ff1c7",
      "type": "pool",
      "attributes": {
        "base_token_price_usd": "0.999745541005697",
        "base_token_price_native_currency": "0.000273214695167948",
        "quote_token_price_usd": "0.997201571758263",
        "quote_token_price_native_currency": "0.000274189521081092",
        "base_token_price_quote_token": "0.99644470",
        "quote_token_price_base_token": "1.00356798",
        "address": "0xbebc44782c7db0a1a60cb6fe97d0b483032ff1c7",
        "name": "DAI / USDC / USDT",
        "pool_created_at": "2022-07-13T11:48:12Z",
        "token_price_usd": "0.999745541005697",
        "fdv_usd": "3270150238",
        "market_cap_usd": "4870754520.25286",
        "price_change_percentage": {
          "m5": "0",
          "m15": "0.01",
          "m30": "0.02",
          "h1": "-0.15",
          "h6": "-0.5",
          "h24": "-0.19"
        },
        "transactions": {
          "m5": {
            "buys": 0,
            "sells": 0,
            "buyers": null,
            "sellers": null
          },
          "m15": {
            "buys": 1,
            "sells": 0,
            "buyers": null,
            "sellers": null
          },
          "m30": {
            "buys": 2,
            "sells": 0,
            "buyers": null,
            "sellers": null
          },
          "h1": {
            "buys": 4,
            "sells": 1,
            "buyers": null,
            "sellers": null
          },
          "h24": {
            "buys": 67,
            "sells": 84,
            "buyers": null,
            "sellers": null
          }
        },
        "volume_usd": {
          "m5": "0.0",
          "m15": "287334.7997",
          "m30": "394221.288",
          "h1": "1502319.288637997",
          "h6": "45415206.49514137",
          "h24": "69802183.6886975"
        },
        "reserve_in_usd": "184383775.4111"
      },
      "relationships": {
        "base_token": {
          "data": {
            "id": "eth_0x6b175474e89094c44da98b954eedeac495271d0f",
            "type": "token"
          }
        },
        "quote_token": {
          "data": {
            "id": "eth_0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
            "type": "token"
          }
        },
        "dex": {
          "data": {
            "id": "curve",
            "type": "dex"
          }
        }
      }
    }
  ]
}

Tips

  • You may add values such as top_pools in the include param to include top pools along with the pools information.
  • If you would like to query token information such as socials, websites, description and etc. You can go to this endpoint /networks/{network}/tokens/{address}/info instead.

Note

  • If the token’s market cap is not verified by the team, the API response will return null for its market cap value, even though it has a displayed value on GeckoTerminal, which might not be accurate as it often matches the Fully Diluted Valuation (FDV).
  • Market Cap can be verified by and sourced from CoinGecko, and the number may be higher than FDV as it may include Market Cap of tokens issued on other blockchain network.
  • Attributes specified in the include param will be returned under the top-level “included” key.
  • Set include_composition=true to surface the balance and liquidity value of the pool’s base and quote tokens. (requires include=top_pools)
  • Cache/Update frequency: every 60 seconds.

Authorizations

x-cg-demo-api-key
string
header
required

Path Parameters

network
string
default:eth
required

network ID *refers to /networks

Example:

"eth"

address
string
default:0xdac17f958d2ee523a2206206994597c13d831ec7
required

token contract address

Example:

"0xdac17f958d2ee523a2206206994597c13d831ec7"

Query Parameters

include
enum<string>

attributes to include

Available options:
top_pools
include_composition
boolean

include pool composition, default: false

Response

200 - application/json

Get specific token on a network

data
object
included
object[]