Skip to main content
GET
/
margin
/
funding_history
Get Funding History
curl --request GET \
  --url https://external-api.kalshi.com/trade-api/v2/margin/funding_history \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'
{
  "funding_history": [
    {
      "market_ticker": "<string>",
      "funding_time": "2023-11-07T05:31:56Z",
      "funding_rate": 123,
      "mark_price": "0.5600",
      "funding_amount": "0.5600",
      "quantity": "10.00",
      "subaccount_number": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Query Parameters

ticker
string

Market ticker for funding history. Leave empty to query across all markets.

start_date
string<date>
required

Inclusive UTC start date for funding history range (YYYY-MM-DD format)

end_date
string<date>
required

Inclusive UTC end date for funding history range (YYYY-MM-DD format)

subaccount
integer

Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.

Required range: x >= 0

Response

Funding history retrieved successfully

funding_history
object[]
required

Array of historical funding payment entries