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

# Varsayılan perp havuzu listesini al

> Varsayılan perpetual işlem havuzlarının listesini hacim ve istatistiklerle döndürür.



## OpenAPI

````yaml /tr/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 Perpetual Futures için yapılandırma ve metadata hizmeti. Bu API, ön
    yüz yapılandırması, varlık kullanılabilirliği, bölgesel kısıtlamalar ve RPC
    uç noktaları sağlar. Emir yerleştirme, Orderly Network'ün API'sine
    devredilmiştir.


    Tüm uç noktalar standart bir zarfla yanıt verir:

    - **Başarılı**: `{ id: string, success: true, data: {...} }`

    - **Hata**: `{ 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: Temel hizmet bilgileri (sürüm, RPC'ler, istatistikler, bölge kontrolü).
  - name: Pool
    description: Perp pazar havuzu yapılandırması.
  - name: Campaign
    description: Kampanya ve lider tablosu verileri.
  - name: Share
    description: Pozisyon ve P&L paylaşım uç noktaları.
paths:
  /pool/default-list:
    get:
      tags:
        - Pool
      summary: Varsayılan perp havuzu listesini al
      description: >-
        Varsayılan perpetual işlem havuzlarının listesini hacim ve
        istatistiklerle döndürür.
      operationId: getPoolList
      responses:
        '200':
          description: Havuz listesi alındı.
          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: Havuz sembolü (örn. BTC/USDC).
                example: BTC/USDC
              volume24h:
                type: string
                description: 24 saatlik işlem hacmi.
              volume7d:
                type: string
                description: 7 günlük işlem hacmi.
              volume30d:
                type: string
                description: 30 günlük işlem hacmi.

````