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

# List available implied volatilities for open instruments

> Returns the latest validated BlockScholes mark IVs that are less than two minutes old. Missing or older quotes are omitted.



## OpenAPI

````yaml /_generated/openapi.yaml get /v1/market/quotes
openapi: 3.1.0
info:
  title: Joyride Core HTTP API
  version: 0.1.0
  description: |
    HTTP endpoints served by joyride-core v8 components. Decimal money,
    price, and quantity fields are strings with up to 8 decimal places unless
    noted otherwise.
servers:
  - url: https://joyride.exchange/api
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Public
  - name: Query
  - name: Withdrawals
  - name: Market Data
    description: Publicly accessible market data. No authentication required.
  - name: Account
    description: Account-scoped history and provisioning. Requires a bearer JWT.
  - name: Referrals
    description: Referral-code validation and attribution surfaces.
  - name: AI Chat
    description: >
      AI-powered trading assistant. Uses SIWS (Sign In With Solana)
      authentication

      and JWT sessions. Returns responses as Server-Sent Events (SSE).
paths:
  /v1/market/quotes:
    get:
      tags:
        - Public
      summary: List available implied volatilities for open instruments
      description: >-
        Returns the latest validated BlockScholes mark IVs that are less than
        two minutes old. Missing or older quotes are omitted.
      operationId: listPublicInstrumentQuotes
      responses:
        '200':
          description: Available instrument implied volatilities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicQuotesResponse'
      security: []
components:
  schemas:
    PublicQuotesResponse:
      type: object
      required:
        - quotes
      properties:
        quotes:
          type: array
          items:
            $ref: '#/components/schemas/PublicQuoteResponse'
    PublicQuoteResponse:
      type: object
      required:
        - symbol
        - mark_iv
        - as_of_ms
      properties:
        symbol:
          type: string
          example: BTC_USDC-2MAY26-77000-C
        mark_iv:
          allOf:
            - $ref: '#/components/schemas/DecimalString'
          description: Current mark implied volatility as a ratio, not a percentage.
          example: '0.81234567'
        as_of_ms:
          type: integer
          format: int64
          description: Gateway receive time in Unix milliseconds.
    DecimalString:
      type: string
      pattern: ^-?[0-9]+(\.[0-9]{1,8})?$
      examples:
        - '100.00000000'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        SIWS-issued JWT. Admin commands require the `admin` role, `admin:*`, or
        the exact `admin:<type>` scope; admin reads use their documented read
        scope.

````