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

# 支持的货币

> 所有支持且可用作 `vs_currency` 的法定货币和加密货币列表。



## OpenAPI

````yaml openapi/zh/coingecko.json GET /coingecko/simple/supported_vs_currencies
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/simple/supported_vs_currencies:
    get:
      summary: 支持的货币
      description: '`vs_currency` 参数支持的所有法定货币和加密货币列表。'
      operationId: coingeckoSupportedVsCurrencies
      responses:
        '200':
          description: 货币代码数组。
          content:
            application/json:
              example:
                - btc
                - eth
                - usd
                - eur
                - jpy
                - gbp
              schema:
                $ref: '#/components/schemas/CoinGeckoStringArray'
components:
  schemas:
    CoinGeckoStringArray:
      type: array
      items:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````