---
title: "Get Funding Fee Payments"
method: GET
path: "/v1/perps/funding_fees"
tags: ["Funding Rate"]
---

# Get Funding Fee Payments

`GET /v1/perps/funding_fees`

Get a paginated history of funding fee payments for the authenticated account. For how funding is calculated and applied, see [Funding rates](/funding-rates).

## Query parameters

- `market` string
- `limit` integer
- `cursor` string
- `startTime` integer
- `endTime` integer

## Response `200`

Paginated list of funding fee payments, most recent first

- object
  - `success` boolean, required — Whether the request was successful
  - `error` string — Error message, present only on failure
  - `error_code` string — Semantic error code. See each endpoint's error responses for the specific codes it can return.
  - `deprecated` string — Deprecation notice, if applicable
  - `result` FundingFeeTransfer[]
    - `market` string, required — Market that the fee was paid in
    - `time` string, date-time, required — The time that the funding fee was paid
    - `markPrice` string, required — The mark price at the time the fee was paid
    - `positionSize` string, required — The base size of the position at the time the fee was paid
    - `positionDirection` 'long' | 'short' | 'neutral', required — The direction of the position at the time the fee was paid
    - `rate` string, required — The funding rate that led to this fee
    - `payer` 'long' | 'short' | 'neutral', required — The side that paid the fee
    - `amount` string, required — The actual amount of USDC transferred. Positive indicates a fee you earned, negative a fee you paid.
  - `pageInfo` PageInfo
    - `prevCursor` string — Cursor value to get the previous page of results
    - `nextCursor` string — Cursor value to get the next page of results

## Other responses

- `400` — Bad request. The request was malformed or failed validation.
- `401` — Authentication required. Provide a valid JWT or API key.
- `403` — Access denied. The authenticated account does not have permission.
- `429` — Rate limit exceeded. Slow down request frequency.
- `500` — Internal server error.

---

[API](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api.md) · [All operations](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondoperps/ondo-perps-rest-api/revisions/39df6b2fa672/schema)
