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

# Get default perp pool list

> Returns list of default perpetual trading pools with volume and stats.



## OpenAPI

````yaml /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: >
    Configuration and metadata service for Raydium Perpetual Futures. This API
    provides frontend configuration, asset availability, regional restrictions,
    and RPC endpoints. Order placement is delegated to Orderly Network's API.


    All endpoints return a standard envelope:

    - **Success**: `{ id: string, success: true, data: {...} }`

    - **Error**: `{ 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: Core service information (version, RPCs, stats, region check).
  - name: Pool
    description: Perp market pool configuration.
  - name: Campaign
    description: Campaign and leaderboard data.
  - name: Share
    description: Position and P&L sharing endpoints.
paths:
  /pool/default-list:
    get:
      tags:
        - Pool
      summary: Get default perp pool list
      description: Returns list of default perpetual trading pools with volume and stats.
      operationId: getPoolList
      responses:
        '200':
          description: Pool list retrieved.
          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: Pool symbol (e.g., BTC/USDC).
                example: BTC/USDC
              volume24h:
                type: string
                description: 24-hour trading volume.
              volume7d:
                type: string
                description: 7-day trading volume.
              volume30d:
                type: string
                description: 30-day trading volume.

````