> ## 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

> A paged directory of active exchanges with trust scores, ranks and 24h volume.

A paged directory of active exchanges with `id`, `name`, `year_established`, `country`, `description`, `url`, `image`, `trust_score`, `trust_score_rank`, `trade_volume_24h_btc` and `has_trading_incentive`. Page with `per_page` and `page`. Use it to rank or filter venues by trust and volume. If you only need the identifier mapping, [`get_coingecko_exchanges_list`](/docs/api-reference/coingecko/get_coingecko-exchanges-list) returns all of them with no market data and no paging; for one venue in full use [`get_coingecko_exchanges_id`](/docs/api-reference/coingecko/get_coingecko-exchanges-id).


## OpenAPI

````yaml openapi/coingecko.json GET /coingecko/exchanges
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:
    get:
      summary: Exchanges List
      description: >-
        A paged directory of active exchanges with `id`, `name`,
        `year_established`, `country`, `description`, `url`, `image`,
        `trust_score`, `trust_score_rank`, `trade_volume_24h_btc` and
        `has_trading_incentive`. Page with `per_page` and `page`. Use it to rank
        or filter venues by trust and volume. If you only need the identifier
        mapping, `get_coingecko_exchanges_list` returns all of them with no
        market data and no paging; for one venue in full use
        `get_coingecko_exchanges_id`.
      operationId: get_coingecko_exchanges
      parameters:
        - name: per_page
          in: query
          schema:
            type: integer
            default: 100
            maximum: 250
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Array of exchange objects.
          content:
            application/json:
              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

````