---
title: "Get Funding Info"
method: POST
path: "/market-data/funding-info"
tags: ["Market Data"]
---

# Get Funding Info

`POST /market-data/funding-info`

Get funding information for a perpetual trading pair.

Args:
    request: Funding info request with connector name and trading pair
    market_data_manager: Injected market data feed manager
    
Returns:
    Funding information including rates, timestamps, and prices
    
Raises:
    HTTPException: 400 for non-perpetual connectors, 500 for other errors

## Request body

- FundingInfoRequest — Request model for getting funding info
  - `connector_name` string, required — Name of the connector
  - `trading_pair` string, required — Trading pair to get funding info for

## Response `200`

Successful Response

- FundingInfoResponse — Response for funding info
  - `trading_pair` string, required — Trading pair
  - `funding_rate` number, nullable, required — Current funding rate
  - `next_funding_time` number, nullable, required — Next funding time timestamp
  - `mark_price` number, nullable, required — Mark price
  - `index_price` number, nullable, required — Index price

## Other responses

- `422` — Validation Error

## Changes

- **2026-04-08** `92703f48a69e` — 2 info
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
- **2026-01-18** `2ad95b6a84b2` — 4 info
  - the response property `funding_rate` became required for the status `200`
  - the response property `index_price` became required for the status `200`
  - the response property `mark_price` became required for the status `200`
  - the response property `next_funding_time` became required for the status `200`
- **2026-01-18** `cb6b6935c8e2` — 4 breaking
  - the response property `funding_rate` became optional for the status `200`
  - the response property `index_price` became optional for the status `200`
  - the response property `mark_price` became optional for the status `200`
  - the response property `next_funding_time` became optional for the status `200`
- **2025-12-20** `1005bcd47280` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/hummingbot/apis/hummingbot-api/changes/market-data/funding-info/post.md)

---

[API](https://skmtc.dev/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.dev/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/revisions/5347fe79537f/schema)
