Account
These endpoints provide read-only access to your account's financial summary and transaction history. All requests must include your API key in the X-Authorization header.
GET /v1/account
Returns a financial summary of your account: total funds deposited, total consumed, remaining credit, and a breakdown of vignettes value.
Response
{
"currency": "RON",
"totalDeposits": 59050,
"totalConsumed": 43655.5,
"creditRemaining": 15394.5,
"orderSummary": {
"vignettes": {
"count": 1091,
"totalAmount": 53955.5
}
}
}
Amounts in orderSummary.vignettes are estimations. For a per-order breakdown see GET /v1/account/vignettes.
GET /v1/account/balance
Returns the current remaining credit balance.
Response
{
"balance": 1179.45,
"currency": "EUR"
}
GET /v1/account/deposits
Returns a paginated list of deposits made to your account.
Query Parameters
Response
{
"data": [
{
"amount": 5000,
"currency": "RON",
"created_at": "2026-03-16T06:55:13.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 2,
"total_pages": 1
}
}
GET /v1/account/vignettes
Returns a paginated list of vignette orders placed by your account, ordered by most recent first.
Query Parameters
Response
{
"data": [
{
"vignette_uuid": "0d152a3a-...",
"vignette_status": "SUCCESS",
"amount": 47.13,
"currency": "RON",
"vehicle_license_plate_number": "AA00AAA",
"vehicle_country_code": "RO",
"created_at": "2026-03-29T16:28:11.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1111,
"total_pages": 56
}
}