> ## 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 predicted funding rate for one market

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

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

Get latest funding rate for one market.




## OpenAPI

````yaml orderly.openapi get /v1/public/funding_rate/{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/funding_rate/{symbol}:
    get:
      tags:
        - public
      summary: Get predicted funding rate for one market
      description: |

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

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

        Get latest funding rate for one market.
      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/FundingRateResponse'
      deprecated: false
components:
  schemas:
    FundingRateResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              $ref: '#/components/schemas/FundingRate'
    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
    FundingRate:
      required:
        - est_funding_rate
        - est_funding_rate_timestamp
        - last_funding_rate
        - last_funding_rate_timestamp
        - next_funding_time
        - sum_unitary_funding
        - symbol
      type: object
      properties:
        symbol:
          type: string
          example: PERP_ETH_USDC
        est_funding_rate:
          type: integer
          example: 0
        est_funding_rate_timestamp:
          type: integer
          example: 1683880020000
        last_funding_rate:
          type: number
          example: 0.0001
        last_funding_rate_timestamp:
          type: integer
          example: 1683878400000
        next_funding_time:
          type: integer
          example: 1683907200000
        sum_unitary_funding:
          type: number
          example: 521.367

````