---
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

---

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