GET
/
networks
/
{network}
/
tokens
/
multi
/
{addresses}
Tokens Data by Token Addresses
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/networks/{network}/tokens/multi/{addresses} \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "data": [
    {
      "id": "eth_0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
      "type": "token",
      "attributes": {
        "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73",
        "name": "Virtual Protocol",
        "symbol": "VIRTUAL",
        "decimals": 18,
        "image_url": "https://coin-images.coingecko.com/coins/images/34057/large/LOGOMARK.png?1708356054",
        "coingecko_coin_id": "virtual-protocol",
        "total_supply": "1000000000000000000000000000.0",
        "normalized_total_supply": "1000000000.0",
        "price_usd": "1.8504100322",
        "fdv_usd": "1850407260.24129",
        "total_reserve_in_usd": "8720991.5967831836177735361998066186",
        "volume_usd": {
          "h24": "2204224.92600213"
        },
        "market_cap_usd": "1211465187.61299"
      },
      "relationships": {
        "top_pools": {
          "data": [
            {
              "id": "eth_0x1688d62c82abebf4d33ecea96d983fc1627966f6",
              "type": "pool"
            }
          ]
        }
      }
    }
  ]
}

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

  • Addresses not found in GeckoTerminal.com will be ignored.
  • This endpoint allows querying up to 50 contract addresses per request. This limit is exclusive for paid plan subscribers (Analyst plan & above).
  • The endpoint will only return the first top most liquid pool for each token. The top pool is determined through a combination of two key factors: liquidity (reserve_in_usd) and 24-Hour Trading Volume (volume_usd).
  • 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 10 seconds for Pro API (Analyst, Lite, Pro, Enterprise).

Authorizations

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

Path Parameters

network
string
default:eth
required

network ID *refers to /networks

Example:

"eth"

addresses
string
default:0x44ff8620b8ca30902395a7bd3f2407e1a091bf73
required

token contract address, comma-separated if more than one token contract address

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 multiple tokens on a network

The response is of type object.