Coins

Coins List (ID Map)

This endpoint allows you to query all the supported coins on CoinGecko with coins ID, name and symbol

get/coins/list

Query parameters

include_platformboolean

include platform and token's contract addresses, default: false

status'active' | 'inactive'

filter by status of coins, default: active

Response

List all coins with ID, name, and symbol

idstring

coin ID

symbolstring

coin symbol

namestring

coin name

platformsobject

coin asset platform and contract address

Example response

[
  {
    "id": "0chain",
    "symbol": "zcn",
    "name": "Zus",
    "platforms": {
      "ethereum": "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78",
      "polygon-pos": "0x8bb30e0e67b11b978a5040144c410e1ccddcba30"
    }
  },
  {
    "id": "01coin",
    "symbol": "zoc",
    "name": "01coin",
    "platforms": {}
  }
]

Changes