Points History
Paginated points events for the user.
GET /points/history?epoch=3&type=trading&page=1&page_size=20
Auth: Authorization: Bearer <JWT> from the EIP-712 login. API keys are not accepted.
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
epoch | int | active | |
type | string | all | trading / pnl / holding / referral / staking |
page | int | 1 | ≥ 1 |
page_size | int | 20 | 1–100 |
Response (data)
{
"events": [
{
"id": "uuid",
"point_type": "trading",
"points": "1.20",
"metadata": { "trade_id": "uuid", "volume": "1000.00", "role": "maker" },
"created_at": "2026-04-15T12:30:00Z"
}
],
"total": 47,
"page": 1,
"page_size": 20
}