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

# 按 ID 获取交易所数据

> 单个交易所的详细数据：交易量、交易对、信任评分和元数据。



## OpenAPI

````yaml openapi/zh/coingecko.json GET /coingecko/exchanges/{id}
openapi: 3.0.3
info:
  title: CoinGecko API
  version: 1.0.0
  description: >-
    通过 AIsa 网关路由的 CoinGecko 加密货币市场数据。涵盖代币元数据、实时和历史价格、OHLC、交易所、行情代码、类别及热门搜索。代理位于
    `https://api.coingecko.com/api/v3/` 的公共 CoinGecko v3 API。
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /coingecko/exchanges/{id}:
    get:
      summary: 按 ID 获取交易所数据
      description: 单个交易所的详细数据（交易量、交易对、信任评分等）。
      operationId: coingeckoExchangeById
      parameters:
        - $ref: '#/components/parameters/ExchangeId'
      responses:
        '200':
          description: 交易所对象。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoinGeckoObject'
components:
  parameters:
    ExchangeId:
      name: id
      in: path
      required: true
      description: CoinGecko 交易所 ID（例如 `binance`、`gdax`）。通过 `/exchanges/list` 获取列表。
      schema:
        type: string
      example: binance
  schemas:
    CoinGeckoObject:
      type: object
      additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````