Transactions API (v1.0)
Operations to retrieve account transactions.
List transactions
The transaction history shows all transactions that affected the account balance.
Authorizations:
static_token
query Parameters
created_from required | string <date-time> Example: created_from=2025-09-01T00:00:00 Start of the period in ISO 8601 format. |
created_to required | string <date-time> Example: created_to=2025-09-11T23:59:59 End of the period in ISO 8601 format. |
balances | string Example: balances=main,bonus Comma-separated list of balance types to filter (e.g., main, bonus). |
offset | integer >= 0 Offset for pagination. |
limit required | integer [ 1 .. 500 ] Example: limit=200 Number of records per page. |
without_removed | boolean Example: without_removed=true Exclude removed transactions if true. |
Responses
Response samples
- 200
- 400
- 401
- 500
Content type
application/json
{- "status": "success",
- "data": [
- {
- "user_id": 100500,
- "transaction_type": "withdraw",
- "description": {
- "en": "Payment for service"
}, - "public_description": {
- "en": "Payment for service"
}, - "balance": "bonus",
- "dir": "outgoing",
- "created": "2025-09-11T12:50:13.621617",
- "price": -210000,
- "state": "PAID",
- "id_meta": {
- "id": [
- 700000001,
- 700000002
], - "billing": "seido",
- "service_id": 1018,
- "service_name": "Dedicated server CL02",
- "service_name_en": "Dedicated server CL02"
}, - "transaction_group": "withdraw",
- "server_meta": {
- "en": {
- "operation": "Payment for service",
- "service": "Dedicated server CL02 11111111-1111-4111-8111-111111111111",
- "full_name": "Payment for service Dedicated server CL02 11111111-1111-4111-8111-111111111111"
}, - "main_resource_uuid": "11111111-1111-4111-8111-111111111111",
- "server_id": null,
- "equip_id": 0,
- "service_id": null,
- "service_type": 38,
- "service_sub_type": 1
}, - "reason_for_debt": null,
- "date_payment_must_made": null,
- "jurbrand_key": "selectel_russia"
}
]
}