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

# Lấy danh sách bể perp mặc định

> Trả về danh sách các bể giao dịch tương lai mặc định với khối lượng và thống kê.



## OpenAPI

````yaml /vi/api-reference/openapi/perp-api-v1.yaml get /pool/default-list
openapi: 3.0.3
info:
  title: API Perp Raydium V1
  version: 1.0.0
  description: >
    Dịch vụ cấu hình và siêu dữ liệu cho Raydium Perpetual Futures. API này cung
    cấp cấu hình giao diện, tính khả dụng tài sản, hạn chế khu vực và các điểm
    cuối RPC. Việc đặt lệnh được ủy thác cho API của Orderly Network.


    Tất cả các điểm cuối trả về một phong bì tiêu chuẩn:

    - **Thành công**: `{ id: string, success: true, data: {...} }`

    - **Lỗi**: `{ 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: Thông tin dịch vụ cơ bản (phiên bản, RPC, thống kê, kiểm tra khu vực).
  - name: Pool
    description: Cấu hình bể perp market.
  - name: Campaign
    description: Dữ liệu chiến dịch và bảng xếp hạng.
  - name: Share
    description: Điểm cuối chia sẻ vị trí và P&L.
paths:
  /pool/default-list:
    get:
      tags:
        - Pool
      summary: Lấy danh sách bể perp mặc định
      description: >-
        Trả về danh sách các bể giao dịch tương lai mặc định với khối lượng và
        thống kê.
      operationId: getPoolList
      responses:
        '200':
          description: Danh sách bể đã lấy.
          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: 'Ký hiệu bể (ví dụ: BTC/USDC).'
                example: BTC/USDC
              volume24h:
                type: string
                description: Khối lượng giao dịch 24 giờ.
              volume7d:
                type: string
                description: Khối lượng giao dịch 7 ngày.
              volume30d:
                type: string
                description: Khối lượng giao dịch 30 ngày.

````