List Payments
GET
/payments
Returns a paginated list of your payments.
Query Parameters
| Param | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number |
limit | integer | 50 | Items per page (max 100) |
status | string | — | Filter: pending, success, failed, expired, refunded |
method | string | — | Filter by method (e.g. X2-PG) |
from | ISO 8601 | — | Start date |
to | ISO 8601 | — | End date |
Response — 200 OK
{
"data": [
{
"payment_id": "vx_...",
"amount": "100.00",
"currency": "EUR",
"status": "success",
"links": [
{ "method": "X1", "status": "success" }
],
"created_at": "2026-03-09T12:00:00.000Z"
}
],
"total": 142,
"page": 1,
"pages": 3
}