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

# Get market info for one symbol

> 
**Limit: 10 requests per 1 second per IP address**

`GET /v1/public/futures/{symbol}`

Get basic market information for one trading pair.




## OpenAPI

````yaml orderly.openapi get /v1/public/futures/{symbol}
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/futures/{symbol}:
    get:
      tags:
        - public
      summary: Get market info for one symbol
      description: |

        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/public/futures/{symbol}`

        Get basic market information for one trading pair.
      parameters:
        - name: symbol
          in: path
          description: ''
          required: true
          example: PERP_ETH_USDC
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FuturesInfoResponse'
      deprecated: false
components:
  schemas:
    FuturesInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    $ref: '#/components/schemas/FutureInfo'
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989
    FutureInfo:
      type: object
      required:
        - 24h_amount
        - 24h_close
        - 24h_high
        - 24h_low
        - 24h_open
        - 24h_volume
        - est_funding_rate
        - index_price
        - last_funding_rate
        - mark_price
        - next_funding_time
        - open_interest
        - sum_unitary_funding
        - symbol
      properties:
        symbol:
          type: string
          example: PERP_ETH_USDC
        index_price:
          type: number
          example: 1901.6
        mark_price:
          type: number
          example: 1950.1
        sum_unitary_funding:
          type: number
          example: 387.891
        est_funding_rate:
          type: number
          example: 0.00046875
        last_funding_rate:
          type: number
          example: 0.00046875
        next_funding_time:
          type: integer
          example: 1683270060000
        open_interest:
          type: number
          example: 815539
        24h_open:
          type: number
          example: 2115.1
        24h_close:
          type: number
          example: 2115.2
        24h_high:
          type: number
          example: 2115.3
        24h_low:
          type: number
          example: 2114.9
        24h_amount:
          type: number
          example: 449054.7636
        24h_volume:
          type: number
          example: 6716559

````