> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Exchanges List (ID Map)

> The plain id/name map of roughly 1,500 exchanges — resolve a venue name into its CoinGecko id.

A flat identifier map of roughly 1,500 exchanges as `id` and `name`. Use it to resolve a venue name into the `id` required by [`get_coingecko_exchanges_id`](/docs/api-reference/coingecko/get_coingecko-exchanges-id) and by the `exchange_ids` filter on [`get_coingecko_coins_id_tickers`](/docs/api-reference/coingecko/get_coingecko-coins-id-tickers). It takes no parameters and carries no market data; for trust scores and volumes use [`get_coingecko_exchanges`](/docs/api-reference/coingecko/get_coingecko-exchanges).


## OpenAPI

````yaml openapi/coingecko.json GET /coingecko/exchanges/list
openapi: 3.0.3
info:
  title: CoinGecko API
  version: 1.0.0
  description: >-
    CoinGecko crypto market data routed through the AIsa gateway. Covers coin
    metadata, live and historical prices, OHLC, exchanges, tickers, categories,
    and trending search. Proxies the public CoinGecko v3 API at
    `https://api.coingecko.com/api/v3/`.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /coingecko/exchanges/list:
    get:
      summary: Exchanges List (ID Map)
      description: >-
        A flat identifier map of roughly 1,500 exchanges as `id` and `name`. Use
        it to resolve a venue name into the `id` required by
        `get_coingecko_exchanges_id` and by the `exchange_ids` filter on
        `get_coingecko_coins_id_tickers`. It takes no parameters and carries no
        market data; for trust scores and volumes use `get_coingecko_exchanges`.
      operationId: get_coingecko_exchanges_list
      responses:
        '200':
          description: Array of `{id, name}`.
          content:
            application/json:
              example:
                - id: binance
                  name: Binance
                - id: gdax
                  name: Coinbase Exchange
              schema:
                $ref: '#/components/schemas/CoinGeckoObjectArray'
components:
  schemas:
    CoinGeckoObjectArray:
      type: array
      items:
        type: object
        additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````