Skip to main content

List Payments

Retrieve a list of payments with filtering and pagination.

Endpoint

GET /v1/payments

Query Parameters

ParameterTypeDescription
statusstringFilter by status: PENDING, COMPLETED, CANCELLED
fromstringStart date (ISO 8601)
tostringEnd date (ISO 8601)
limitnumberNumber of records (default 100)
offsetnumberOffset for pagination

Request Example

curl -X GET "https://api.bopay.io/v1/payments?status=COMPLETED&limit=50" \
-H "X-Identity: your-api-key" \
-H "X-Signature: your-signature"

Response

{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"ext_id": "order_12345",
"amount": 5000,
"currency": "RUB",
"status": "COMPLETED",
"method": "SBP",
"valid_until": "2026-01-30T12:30:00Z",
"created_at": "2026-01-30T12:15:00Z"
}
],
"limit": 50,
"offset": 0
}

Response Fields

FieldTypeDescription
dataarrayArray of payments
limitnumberRecord limit
offsetnumberCurrent offset