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

> Every trading pair listed on one exchange, paged, with prices, volumes, spreads and depth.

Every trading pair listed on one exchange, paged: `base`, `target`, `market`, `last`, `volume`, `converted_last`, `converted_volume`, `trust_score`, `bid_ask_spread_percentage`, `timestamp`, `trade_url` and the `is_anomaly` / `is_stale` flags. Narrow to specific assets with `coin_ids`, sort with `order`, and set `depth` to add order-book move costs. Use it to audit one venue's coverage or liquidity. For one coin's pairs across all venues use [`get_coingecko_coins_id_tickers`](/docs/api-reference/coingecko/get_coingecko-coins-id-tickers) instead.


## OpenAPI

````yaml openapi/coingecko.json GET /coingecko/exchanges/{id}/tickers
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}/tickers:
    get:
      summary: Exchange Tickers
      description: >-
        Every trading pair listed on one exchange, paged: `base`, `target`,
        `market`, `last`, `volume`, `converted_last`, `converted_volume`,
        `trust_score`, `bid_ask_spread_percentage`, `timestamp`, `trade_url` and
        the `is_anomaly` / `is_stale` flags. Narrow to specific assets with
        `coin_ids`, sort with `order`, and set `depth` to add order-book move
        costs. Use it to audit one venue's coverage or liquidity. For one coin's
        pairs across all venues use `get_coingecko_coins_id_tickers` instead.
      operationId: get_coingecko_exchanges_id_tickers
      parameters:
        - $ref: '#/components/parameters/ExchangeId'
        - name: coin_ids
          in: query
          description: Filter by coin IDs (comma-separated).
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: depth
          in: query
          schema:
            type: boolean
            default: false
        - name: order
          in: query
          schema:
            type: string
            enum:
              - trust_score_desc
              - trust_score_asc
              - volume_desc
        - name: include_exchange_logo
          in: query
          schema:
            type: boolean
            default: false
          description: Show exchange logos in ticker results.
      responses:
        '200':
          description: Tickers array.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoinGeckoTickersResponse'
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:
    CoinGeckoTickersResponse:
      type: object
      properties:
        name:
          type: string
        tickers:
          type: array
          items:
            type: object
            additionalProperties: true
      additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````