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

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

`GET /v1/public/market_info/funding_history`




## OpenAPI

````yaml orderly.openapi get /v1/public/market_info/funding_history
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/market_info/funding_history:
    get:
      tags:
        - public
      summary: Get funding rate for all markets
      description: |

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

        `GET /v1/public/market_info/funding_history`
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketFundingRateHistoryResponse'
      deprecated: false
components:
  schemas:
    GetMarketFundingRateHistoryResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      symbol:
                        type: string
                        example: PERP_BTC_USDC
                      data_start_time:
                        type: string
                        example: '2022-01-01 00:00:00'
                      funding:
                        type: object
                        properties:
                          last:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.00234
                              positive:
                                type: number
                                example: 1
                              negative:
                                type: number
                                example: 0
                          1d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: -0.00828
                              positive:
                                type: number
                                example: 10
                              negative:
                                type: number
                                example: 10
                          3d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: -0.00412
                              positive:
                                type: number
                                example: 9
                              negative:
                                type: number
                                example: 11
                          7d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.00012
                              positive:
                                type: number
                                example: 8
                              negative:
                                type: number
                                example: 12
                          14d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.00156
                              positive:
                                type: number
                                example: 7
                              negative:
                                type: number
                                example: 13
                          30d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.00345
                              positive:
                                type: number
                                example: 6
                              negative:
                                type: number
                                example: 14
                          90d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.01023
                              positive:
                                type: number
                                example: 5
                              negative:
                                type: number
                                example: 15
                          180d:
                            type: object
                            properties:
                              rate:
                                type: number
                                example: 0.01567
                              positive:
                                type: number
                                example: 4
                              negative:
                                type: number
                                example: 16
    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

````