---
title: "Get Public XP Transfer History"
method: GET
path: "/xp/public-transfers"
tags: ["XPTransfersV2"]
---

# Get Public XP Transfer History

`GET /xp/public-transfers`

Retrieve a feed of public XP transfers. Supports filtering by time range or getting the latest transfers based on page_size. Private transfers are excluded from results.

## Query parameters

- `start_at` integer
- `end_at` integer
- `season` string
- `cursor` string
- `page_size` 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
    - `amount` integer — Amount of XP transferred
    - `created_at` integer — Creation timestamp (milliseconds since epoch)
    - `fee` integer — Fee charged for the transfer (deducted from sender's balance)
    - `id` string — Unique transfer identifier
    - `is_private` boolean — Whether the transfer is private (not shown on public feeds)
    - `recipient` string — Address of the recipient (gaining XP)
    - `season` string — Season identifier ('season1' for Season 1, 'season2' for Season 2, etc.)
    - `sender` string — Address of the sender (losing XP)

## Other responses

- `400` — Bad Request

---

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