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

# Exchange Data by ID

> The full profile of one exchange: trust score, volume, coverage, social links and a ticker sample.

The full profile of one exchange: `name`, `year_established`, `country`, `description`, `url`, `image`, social handles, `centralized`, `trust_score`, `trust_score_rank`, `trade_volume_24h_btc`, `coins`, `pairs`, plus an embedded `tickers` sample and `status_updates`. Use it for venue due diligence. For a ranked list across many venues use [`get_coingecko_exchanges`](/docs/api-reference/coingecko/get_coingecko-exchanges); for that venue's complete paged pair list use [`get_coingecko_exchanges_id_tickers`](/docs/api-reference/coingecko/get_coingecko-exchanges-id-tickers).


## OpenAPI

````yaml openapi/coingecko.json GET /coingecko/exchanges/{id}
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/{id}:
    get:
      summary: Exchange Data by ID
      description: >-
        The full profile of one exchange: `name`, `year_established`, `country`,
        `description`, `url`, `image`, social handles, `centralized`,
        `trust_score`, `trust_score_rank`, `trade_volume_24h_btc`, `coins`,
        `pairs`, plus an embedded `tickers` sample and `status_updates`. Use it
        for venue due diligence. For a ranked list across many venues use
        `get_coingecko_exchanges`; for that venue's complete paged pair list use
        `get_coingecko_exchanges_id_tickers`.
      operationId: get_coingecko_exchanges_id
      parameters:
        - $ref: '#/components/parameters/ExchangeId'
      responses:
        '200':
          description: Exchange object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoinGeckoObject'
components:
  parameters:
    ExchangeId:
      name: id
      in: path
      required: true
      description: >-
        CoinGecko exchange ID (e.g., `binance`, `gdax`). Get the list via
        `/exchanges/list`.
      schema:
        type: string
      example: binance
  schemas:
    CoinGeckoObject:
      type: object
      additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````