> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myfundedperpetuals.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: MyFundedPerps API (Beta)
  version: 1.0.0
  description: >-
    The developer API is in beta. Breaking changes may be introduced at any
    time. Programmatic access to MyFundedPerps paper-trading challenge accounts.
    API trades use the same real order books and simulated execution engine as
    the web trading interface. Every response carries an `X-Request-Id` header
    for support and log correlation.
  contact:
    url: https://myfundedperpetuals.com/support
servers:
  - url: https://developers.myfundedperpetuals.com
    description: Live
  - url: https://sandbox.myfundedperpetuals.com
    description: Sandbox (test keys and sandbox accounts only)
security:
  - bearerAuth: []
tags:
  - name: General
  - name: Authentication
  - 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
            - fpx
        symbol:
          type: string
          example: BTC
          description: >-
            Display symbol for the market. Use coin for developer WebSocket
            subscriptions.
        coin:
          type: string
          example: BTCUSDT
          description: >-
            Exact venue symbol. Pass this value in the developer WebSocket
            symbols filter with this market's provider.
        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: MyFundedPerps API key
      description: >-
        API key beginning with `fp_live_` (live keys, served at
        developers.myfundedperpetuals.com) or `fp_test_` (test keys, served at
        sandbox.myfundedperpetuals.com). A key presented on the other host is
        rejected with `401` and a message naming the correct host.

````