> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raze.bot/llms.txt
> Use this file to discover all available pages before exploring further.

# List supported perpetuals

> Static list of supported markets per venue (v1: Jupiter Perps).
`volume_24h_usd` and `trades_24h` are pulled from `_mv_perp_market_hourly` (zeros until data accrues).




## OpenAPI

````yaml openapi-spec/history.yaml get /api/sol/perp/markets
openapi: 3.0.3
info:
  title: Raze Database API
  description: >
    Paid subscription API for Solana transaction data and history.


    Also hosts write utilities (`/utils/sol/*`): token launch, transfer, burn,

    consolidate, fees claim/config, and agent initialize — previously on

    `router.raze.bot`. Mixer/distribute removed 2026-07-25.


    ## Batch Requests

    All endpoints with path parameters (mint, signer, address, tokenMint,
    ownerAddress) support batch queries

    via comma-separated values. For example:
    `/api/sol/trades/mint/mint1,mint2,mint3?limit=50`


    - Maximum 10 values per batch request

    - Each value must be a valid address (>= 32 characters)

    - Single values behave identically to non-batch requests

    - Batch response format: `{ "success": true, "results": { "value1": {...},
    "value2": {...} }, "count": N, "timestamp": "..." }`

    - Each key in `results` contains the full single-entity response

    - Queries run in parallel for maximum performance
  version: 1.0.0
servers:
  - url: https://api.raze.bot
    description: >-
      Raze global History API — GeoDNS routes to the nearest region
      automatically
security:
  - ApiKeyAuth: []
paths:
  /api/sol/perp/markets:
    get:
      summary: List supported perpetuals
      description: >
        Static list of supported markets per venue (v1: Jupiter Perps).

        `volume_24h_usd` and `trades_24h` are pulled from
        `_mv_perp_market_hourly` (zeros until data accrues).
      operationId: listPerpMarkets
      parameters:
        - name: venue
          in: query
          schema:
            type: string
            enum:
              - jup
              - phoenix
          description: Optional venue filter. Omit for all venues.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PerpMarketsResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedResponse'
components:
  schemas:
    PerpMarketsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PerpMarket'
        count:
          type: integer
    UnauthorizedResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        code:
          type: string
      example:
        error: Unauthorized
        message: Invalid API key
        code: INVALID_KEY
    PerpMarket:
      type: object
      properties:
        market_id:
          type: string
          example: jup:SOL-PERP
        venue:
          type: string
          example: jup
        asset:
          type: string
          example: SOL
        volume_24h_usd:
          type: integer
          format: int64
          description: >-
            Sum of fill volume in USD (raw units) over the trailing 24h. 0 until
            data accrues.
        trades_24h:
          type: integer
          format: int64
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: apiKey

````