> ## 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 マーケット統計を取得

> 24時間・7日・30日の取引高とオープン利息（ロング・ショート・合計）を返します。



## OpenAPI

````yaml /ja/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
    永続先物のコンフィギュレーションおよびメタデータサービス。この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:
  /main/info:
    get:
      tags:
        - Main
      summary: Perp マーケット統計を取得
      description: 24時間・7日・30日の取引高とオープン利息（ロング・ショート・合計）を返します。
      operationId: getMarketInfo
      responses:
        '200':
          description: マーケット情報を取得しました。
          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時間取引高。
                7d:
                  type: number
                  description: 7日間取引高。
                30d:
                  type: number
                  description: 30日間取引高。
            openInterest:
              type: object
              properties:
                long:
                  type: number
                  description: 合計ロングオープン利息。
                short:
                  type: number
                  description: 合計ショートオープン利息。
                all:
                  type: number
                  description: 統合オープン利息。

````