Entities List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/entities/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "texas",
"symbol": "",
"name": "Texas",
"country": "US"
},
{
"id": "digipowerx",
"symbol": "DGX.V",
"name": "DigiPowerX",
"country": "US"
}
]Public Treasury
Entities List
To query all the supported entities on CoinGecko with entity ID, name, symbol, and country
GET
/
entities
/
list
Entities List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/entities/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "texas",
"symbol": "",
"name": "Texas",
"country": "US"
},
{
"id": "digipowerx",
"symbol": "DGX.V",
"name": "DigiPowerX",
"country": "US"
}
]Use this endpoint to get entity IDs for other Public Treasury endpoints.
SDK Examples
const response = await client.entities.getList();
console.log(JSON.stringify(response, null, 2));
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Query Parameters
Filter by entity type.
Available options:
company, government Total results per page. Default value: 100 Valid values: 1...250
Page through results. Default value: 1
Was this page helpful?
⌘I

