---
title: "Funding payments history"
method: GET
path: "/funding/payments"
tags: ["Account"]
---

# Funding payments history

`GET /funding/payments`

List funding payments made by/to the requester's account

*Funding payments are periodic payments between traders to make the perpetual
futures contract price is close to the index price.*

## Query parameters

- `cursor` string
- `end_at` integer
- `market` string, required
- `page_size` integer
- `start_at` integer

## Response `200`

OK

- object
  - `next` string — The pointer to fetch next set of records (null if there are no records left)
  - `prev` string — The pointer to fetch previous set of records (null if there are no records left)
  - `results` object[] — Array of paginated results
    - `account` string — Account that made the payment
    - `created_at` integer — Funding payment time
    - `fill_id` string — Fill id that triggered the payment (if any)
    - `id` string — Unique string ID to identify the payment
    - `index` string — Value of the funding index at the time of payment
    - `market` string — Market against which payment is made
    - `payment` string — Payment amount in settlement asset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

## Changes

- **2025-12-24** `846a2e2b455b` — 3 info
  - added the media type `application/json` for the response with the status `200`
  - added the media type `application/json` for the response with the status `400`
  - added the media type `application/json` for the response with the status `401`

[Change history](https://skmtc.dev/tradeparadex/apis/paradex-rest-api-2/changes/funding/payments/get.md)

---

[API](https://skmtc.dev/tradeparadex/apis/paradex-rest-api-2.md) · [All operations](https://skmtc.dev/tradeparadex/apis/paradex-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/tradeparadex/apis/paradex-rest-api-2/revisions/846a2e2b455b?raw)
