> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raydium.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 取得預設永續期貨池列表

> 返回預設永續交易池列表及交易量與統計資料。



## OpenAPI

````yaml /zh-Hant/api-reference/openapi/perp-api-v1.yaml get /pool/default-list
openapi: 3.0.3
info:
  title: Raydium Perps API V1
  version: 1.0.0
  description: >
    Raydium 永續期貨的設定與中繼資料服務。此 API 提供前端設定、資產可用性、區域限制與 RPC 端點。訂單下單已委派給 Orderly
    Network 的 API。


    所有端點均返回標準信封：

    - **成功**：`{ id: string, success: true, data: {...} }`

    - **錯誤**：`{ id: string, success: false, msg: string }`
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://api-perp-v1.raydium.io
    description: Production
security: []
tags:
  - name: Main
    description: 核心服務資訊（版本、RPC、統計、區域檢查）。
  - name: Pool
    description: 永續期貨市場池設定。
  - name: Campaign
    description: 活動與排行榜資料。
  - name: Share
    description: 部位與損益分享端點。
paths:
  /pool/default-list:
    get:
      tags:
        - Pool
      summary: 取得預設永續期貨池列表
      description: 返回預設永續交易池列表及交易量與統計資料。
      operationId: getPoolList
      responses:
        '200':
          description: 池列表已取得。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PoolListResponse'
components:
  schemas:
    PoolListResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              symbol:
                type: string
                description: 池符號（例如 BTC/USDC）。
                example: BTC/USDC
              volume24h:
                type: string
                description: 24 小時交易量。
              volume7d:
                type: string
                description: 7 天交易量。
              volume30d:
                type: string
                description: 30 天交易量。

````