Endpoint Playground
Test Crawlora's CoinGecko Treasuries API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/coingecko/treasuries?asset=all&holder_type=all&vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| asset | string | No | all | Treasury asset filter, default all |
| holder_type | string | No | all | Treasury holder type filter, default all |
| limit | integer | No | Rows to return, default 100, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"asset": "all",
"holder_type": "all",
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/treasuries",
"fetched_at": "2026-05-24T00:00:00Z",
"entities": [
{
"rank": 1,
"id": "strategy",
"name": "Strategy",
"ticker": "MSTR.US",
"entity_type": "Company",
"url": "https://www.coingecko.com/en/treasuries/companies/strategy",
"top_holdings": "+28,677 BTC",
"total_cost_usd": 63870055699,
"today_value_usd": 65219021341.82,
"mnav": 1
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized entity rows from CoinGecko's public crypto treasuries tables. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"asset": "all",
"holder_type": "all",
"limit": 3,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/treasuries",
"fetched_at": "2026-05-24T00:00:00Z",
"entities": [
{
"rank": 1,
"id": "strategy",
"name": "Strategy",
"ticker": "MSTR.US",
"entity_type": "Company",
"url": "https://www.coingecko.com/en/treasuries/companies/strategy",
"top_holdings": "+28,677 BTC",
"total_cost_usd": 63870055699,
"today_value_usd": 65219021341.82,
"mnav": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/treasuries" \
-H "x-api-key: $CRAWLORA_API_KEY"