> ## 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 pazar istatistiklerini al

> 24s/7g/30g işlem hacmi ve açık pozisyonu (uzun/kısa/toplam) döndürür.



## OpenAPI

````yaml /tr/api-reference/openapi/perp-api-v1.yaml get /main/info
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:
  /main/info:
    get:
      tags:
        - Main
      summary: Perp pazar istatistiklerini al
      description: 24s/7g/30g işlem hacmi ve açık pozisyonu (uzun/kısa/toplam) döndürür.
      operationId: getMarketInfo
      responses:
        '200':
          description: Pazar bilgisi alındı.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketInfoResponse'
components:
  schemas:
    MarketInfoResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
        data:
          type: object
          properties:
            volume:
              type: object
              properties:
                24h:
                  type: number
                  description: 24 saatlik işlem hacmi.
                7d:
                  type: number
                  description: 7 günlük işlem hacmi.
                30d:
                  type: number
                  description: 30 günlük işlem hacmi.
            openInterest:
              type: object
              properties:
                long:
                  type: number
                  description: Toplam uzun açık pozisyonu.
                short:
                  type: number
                  description: Toplam kısa açık pozisyonu.
                all:
                  type: number
                  description: Birleşik açık pozisyonu.

````