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

# Batched price lookup

> Latest ohlcv_1m close × Pyth SOL/USD per mint. Up to 100 mints. Mints with no recent (last-hour) candle return as `null` in the results map.



## OpenAPI

````yaml /api-reference/openapi.json get /price/multi
openapi: 3.1.0
info:
  title: Dexploit API
  version: 1.0.0
  description: Real-time and historical Solana DEX swap and OHLCV data.
servers:
  - url: https://api.dexploit.dev
    description: Production
security:
  - ApiKeyHeader: []
  - BearerAuth: []
  - ApiKeyQuery: []
paths:
  /price/multi:
    get:
      tags:
        - Price
      summary: Batched price lookup
      description: >-
        Latest ohlcv_1m close × Pyth SOL/USD per mint. Up to 100 mints. Mints
        with no recent (last-hour) candle return as `null` in the results map.
      operationId: getPriceMulti
      parameters:
        - name: tokens
          in: query
          required: true
          schema:
            type: string
            example: MintA,MintB,MintC
          description: Comma-separated mints, max 100.
      responses:
        '200':
          description: Per-mint prices
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PriceMultiResponse'
        '400':
          description: More than 100 mints requested
components:
  schemas:
    PriceMultiResponse:
      type: object
      properties:
        results:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/PriceEntry'
            nullable: true
          description: Keyed by mint. Null when the mint has no recent (last-hour) candle.
        computed_at:
          type: integer
    PriceEntry:
      type: object
      properties:
        price_usd:
          type: number
        price_sol:
          type: number
        ts_ms:
          type: integer
          description: Unix epoch ms of the source candle.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Preferred for swaps-api endpoints (`/swaps/*`, `/stats/*`, `/trending`,
        `/pool-events`).
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Required by the OHLCV endpoints (`/api/v1/*`) and accepted by every
        other endpoint. Send `Authorization: Bearer ohlcv_live_sk_<your_key>`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Browser-friendly alternative to the Bearer header — accepted by every
        endpoint and required for WebSocket from the browser.

````