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

# List tradable markets

> Returns the selected execution venue for each currently tradable instrument.



## OpenAPI

````yaml /openapi.yaml get /v1/markets
openapi: 3.1.0
info:
  title: Funding Perpetuals API
  version: 1.0.0
  description: >-
    Programmatic access to Funding Perpetuals paper-trading challenge accounts.
    API trades use the same real order books and simulated execution engine as
    the web trading interface.
  contact:
    url: https://fundingperpetuals.com/support
servers:
  - url: https://developers.fundingperpetuals.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: General
  - name: Accounts
  - name: Markets
  - name: Positions
  - name: Orders
  - name: Fills
  - name: Strategy Orders
paths:
  /v1/markets:
    get:
      tags:
        - Markets
      summary: List tradable markets
      description: >-
        Returns the selected execution venue for each currently tradable
        instrument.
      operationId: listMarkets
      responses:
        '200':
          description: Tradable markets.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Market'
      security: []
components:
  schemas:
    Market:
      type: object
      required:
        - market_id
        - provider
        - symbol
        - coin
        - size_decimals
        - max_leverage
      properties:
        market_id:
          type: string
          example: binance|BTCUSDT
        provider:
          type: string
          enum:
            - binance
            - bybit
            - hyperliquid
            - lighter
            - kraken
        symbol:
          type: string
          example: BTC
        coin:
          type: string
          example: BTCUSDT
        size_decimals:
          type: integer
          minimum: 0
        max_leverage:
          type: number
          minimum: 1
        market_type:
          type: string
        category:
          type: string
        trading_enabled:
          type: boolean
        reduce_only:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Funding Perpetuals API key
      description: API key beginning with `fp_live_`.

````