Docs

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
        }
    }
}
Field Description
currency Your account currency.
totalDeposits Sum of all funds deposited into your account, converted to your account currency.
creditRemaining Current balance.
totalConsumed Funds consumed (totalDeposits - creditRemaining).
orderSummary.vignettes.totalAmount Sum of vignettes amounts.

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

Parameter Default Max Description
page 1 Page number.
limit 20 100 Number of results per page.

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

Parameter Default Max Description
page 1 Page number.
limit 20 100 Number of results per page.

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
    }
}