> ## 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 rates for all markets

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

`GET /v1/public/funding_rates`

Get predicted funding rates for all futures trading pairs.

Get the : 
* `last_funding_rate` : latest hourly funding rate for all the markets for the last funding period (dt = 8h)
* `est_funding_rate` : rolling average of all funding rates over the last 8 hours



## OpenAPI

````yaml orderly.openapi get /v1/public/funding_rates
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_rates:
    get:
      tags:
        - public
      summary: Get predicted funding rates for all markets
      description: >-

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


        `GET /v1/public/funding_rates`


        Get predicted funding rates for all futures trading pairs.


        Get the : 

        * `last_funding_rate` : latest hourly funding rate for all the markets
        for the last funding period (dt = 8h)

        * `est_funding_rate` : rolling average of all funding rates over the
        last 8 hours
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundingRatesResponse'
      deprecated: false
components:
  schemas:
    FundingRatesResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    $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

````