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

# Markets

> Funding market snapshot with normalized APR fields

Use this endpoint to fetch market-level funding snapshots.\
Use `market_ids` to filter specific markets.

<Note>
  All `funding_rate*` fields are returned as APR values (annualized percent rate, in `%`).
</Note>


## OpenAPI

````yaml GET /api/v1/public/funding/markets
openapi: 3.1.0
info:
  title: bendbasis Public API
  description: >-
    Public funding endpoints for markets, arbitrage opportunities, and funding
    history.
  version: 1.0.0
servers:
  - url: https://bendbasis.com
security: []
paths:
  /api/v1/public/funding/markets:
    get:
      summary: Markets
      description: >-
        Funding market snapshot. All `funding_rate*` fields are APR values in
        percent.
      operationId: getFundingMarkets
      parameters:
        - name: market_ids
          in: query
          required: false
          description: >-
            Optional market ID filter. Supports CSV (`1,2,3`) and repeated query
            params (`?market_ids=1&market_ids=2`).
          schema:
            type: string
          example: 1,2,3
      responses:
        '200':
          description: Markets response
          headers:
            X-API-Version:
              schema:
                type: string
              example: v1
            Cache-Control:
              schema:
                type: string
              example: public, max-age=0, s-maxage=300, stale-while-revalidate=60
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MarketRow'
              example:
                - market_id: 1
                  exchange: bybit
                  base_asset: 0G
                  quote_asset: USDT
                  open_interest: 5279289.65
                  volume_24h: 2881100.8681
                  funding_rate_live: -31.91
                  funding_rate_1d: 2.95
                  funding_rate_3d: -23.35
                  funding_rate_7d: -9.4
                  funding_rate_15d: -94.63
                  funding_rate_30d: -212.71
                - market_id: 2
                  exchange: bybit
                  base_asset: BABYDOGE
                  quote_asset: USDT
                  open_interest: 471050.14
                  volume_24h: 288038.1897
                  funding_rate_live: 10.95
                  funding_rate_1d: 10.95
                  funding_rate_3d: 10.95
                  funding_rate_7d: 10.95
                  funding_rate_15d: 10.55
                  funding_rate_30d: 10.75
components:
  schemas:
    MarketRow:
      type: object
      description: >-
        Market snapshot row. All `funding_rate*` fields are APR values in
        percent.
      properties:
        market_id:
          type:
            - integer
            - 'null'
          description: Market identifier.
        exchange:
          type: string
          description: Exchange name.
        base_asset:
          type: string
          description: Base asset ticker.
        quote_asset:
          type: string
          description: Quote asset ticker.
        open_interest:
          type:
            - number
            - 'null'
          description: Open interest in quote currency units.
        volume_24h:
          type:
            - number
            - 'null'
          description: 24-hour traded volume in quote currency units.
        funding_rate_live:
          type:
            - number
            - 'null'
          description: Current funding rate APR in percent.
        funding_rate_1d:
          type:
            - number
            - 'null'
          description: 1-day funding rate APR in percent.
        funding_rate_3d:
          type:
            - number
            - 'null'
          description: 3-day funding rate APR in percent.
        funding_rate_7d:
          type:
            - number
            - 'null'
          description: 7-day funding rate APR in percent.
        funding_rate_15d:
          type:
            - number
            - 'null'
          description: 15-day funding rate APR in percent.
        funding_rate_30d:
          type:
            - number
            - 'null'
          description: 30-day funding rate APR in percent.

````