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

# デフォルト Perp プールリストを取得

> 取引高および統計を含むデフォルト永続取引プールのリストを返します。



## OpenAPI

````yaml /ja/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: Perp マーケットプールのコンフィギュレーション。
  - name: Campaign
    description: キャンペーンおよびリーダーボードデータ。
  - name: Share
    description: ポジションおよび P&L シェアリングエンドポイント。
paths:
  /pool/default-list:
    get:
      tags:
        - Pool
      summary: デフォルト Perp プールリストを取得
      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日間取引高。

````