> ## 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 映射）

> 列出所有代币的 id、symbol 和 name。用于将代币符号映射到 CoinGecko ID。



## OpenAPI

````yaml openapi/zh/coingecko.json GET /coingecko/coins/list
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/coins/list:
    get:
      summary: 币种列表（ID 映射）
      description: 列出所有代币的 id、symbol 和 name。用于将代币符号映射到 CoinGecko ID。
      operationId: coingeckoCoinsList
      parameters:
        - name: include_platform
          in: query
          description: 包括平台和合约地址。
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: 币种数组。
          content:
            application/json:
              example:
                - id: bitcoin
                  symbol: btc
                  name: Bitcoin
                - id: ethereum
                  symbol: eth
                  name: Ethereum
              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

````