Public Treasury

Entities List (ID Map)

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

get/entities/list

Query parameters

entity_type'company' | 'government'

filter by entity type, default: false

per_pageinteger

total results per page, default: 100 Valid values: 1...250

pageinteger

page through results, default: 1

Response

List all entities with ID, name, symbol, and country

idstring

entity ID

symbolstring

ticker symbol of public company

namestring

entity name

countrystring

country code

Example response

[
  {
    "id": "usbc",
    "symbol": "USBC.US",
    "name": "USBC",
    "country": "US"
  },
  {
    "id": "mara-holdings",
    "symbol": "MARA.US",
    "name": "MARA Holdings",
    "country": "US"
  }
]

Changes