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

---

[API](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2.md) · [All operations](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradeparadex/paradex-rest-api-2/versions/6a76453d754c/schema)
