{ "opencollection": "1.0.0", "info": { "name": "CoinGecko Crypto Market Data Asset Platforms Exchanges API", "version": "3.0.1" }, "request": { "auth": { "type": "apikey", "key": "x-cg-demo-api-key", "value": "{{x-cg-demo-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Exchanges", "type": "folder" }, "items": [ { "info": { "name": "List all exchanges", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges", "params": [ { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page (1-250)" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" } ] }, "docs": "Get a paginated list of all supported exchanges with volume, trust score, and other exchange-related data. Results are ordered by trading volume by default." }, { "info": { "name": "List all supported exchanges (ID map)", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges/list" }, "docs": "Get the complete list of all supported exchange IDs and names. Use this to obtain exchange IDs for use in other endpoints." }, { "info": { "name": "Get exchange data by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The exchange ID (e.g., binance, coinbase-exchange)" } ] }, "docs": "Get comprehensive data for a specific exchange including volume, trust score, year established, country, and social links." }, { "info": { "name": "Get exchange tickers", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges/:id/tickers", "params": [ { "name": "id", "value": "", "type": "path", "description": "The exchange ID (e.g., binance, coinbase-exchange)" }, { "name": "coin_ids", "value": "", "type": "query", "description": "Filter tickers by coin IDs (comma-separated)" }, { "name": "include_exchange_logo", "value": "", "type": "query", "description": "Include exchange logo URL in the response" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "depth", "value": "", "type": "query", "description": "Include order book depth (2% cost to move)" }, { "name": "order", "value": "", "type": "query", "description": "Sort order for tickers" } ] }, "docs": "Get paginated trading pair tickers for a specific exchange. Results include price, volume, spread, and trust score data for each trading pair." }, { "info": { "name": "Get exchange volume chart data", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges/:id/volume_chart", "params": [ { "name": "id", "value": "", "type": "path", "description": "The exchange ID (e.g., binance, coinbase-exchange)" }, { "name": "days", "value": "", "type": "query", "description": "Number of days of historical data (1, 7, 14, 30, 90, 180, 365)" } ] }, "docs": "Get historical volume chart data for a specific exchange over a specified number of days." }, { "info": { "name": "Get exchange volume chart within date range", "type": "http" }, "http": { "method": "GET", "url": "https://api.coingecko.com/api/v3/exchanges/:id/volume_chart/range", "params": [ { "name": "id", "value": "", "type": "path", "description": "The exchange ID" }, { "name": "from", "value": "", "type": "query", "description": "Start date as UNIX timestamp" }, { "name": "to", "value": "", "type": "query", "description": "End date as UNIX timestamp" } ] }, "docs": "Get historical volume chart data for a specific exchange within a custom date range specified by UNIX timestamps. This endpoint is exclusive to paid plan subscribers." } ] } ], "bundled": true }