cURL
curl --request GET \ --url https://api.aisa.one/apis/v1/coingecko/exchanges/list \ --header 'Authorization: Bearer <token>'
[ { "id": "binance", "name": "Binance" }, { "id": "gdax", "name": "Coinbase Exchange" } ]
List all exchange IDs and names. Use to map exchange names to CoinGecko IDs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Array of {id, name}.
{id, name}