---
title: "Get funding payment history"
method: GET
path: "/v1/account/funding-payments"
tags: ["Account"]
---

# Get funding payment history

`GET /v1/account/funding-payments`

Get funding payment history for an account. Returns funding payments calculated when positions are settled (on trade).

## Query parameters

- `account` string
- `market_id` string, int64
- `start_time` string, uint64
- `end_time` string, uint64
- `page` integer
- `limit` integer
- `sorted_by` string

## Response `200`

A successful response.

- ApiGetFundingPaymentHistoryResponse
  - `account` string
  - `records` GetFundingPaymentHistoryResponseFundingPaymentRecord[]
    - `market_id` string, int64
    - `funding_payment` string
    - `position_size` string
    - `block_number` string, int64
    - `block_time` string, uint64
    - `tx_hash` string
    - `side` string
    - `funding_rate` string — Funding rate (decimal string, 18 decimals): hourly rate for unsettled rows; hourly rate for that period for settled rows.
    - `is_settled` boolean — Whether this payment has been settled on-chain. False = unsettled hourly accrual.
    - `funding_rate_8h` string — 8h cumulative funding rate at settlement time (decimal string, 18 decimals). Only set for settled rows.
    - `trade_side` string — Trade direction that triggered this settlement: "BUY" or "SELL". Only set for settled rows.
  - `page` integer
  - `has_next_page` boolean

## Other responses

- `default` — An unexpected error response.

---

[API](https://skmtc.net/rise/apis/risex-rest-api.md) · [All operations](https://skmtc.net/rise/apis/risex-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rise/risex-rest-api/revisions/194af8339c0d/schema)
