Vignet-tickets (Vignette Tickets)
Haal beschikbare snelwegvignet-tickets op. Vignetten zijn digitale tolpassen die vereist zijn voor het rijden op snelwegen in diverse Europese landen.
Tickets weergeven
GET /products/tickets
Queryparameters
| Naam | Type | Verplicht | Beschrijving |
|---|
page | integer | Nee | Paginanummer (standaard: 1) |
limit | integer | Nee | Items per pagina (standaard: 50, max: 100) |
countryIsocode | string | Nee | Filteren op land ISO-code (bijv. AT, CZ, CH) |
vehicleCategoryId | string | Nee | Filteren op voertuigcategorie-UUID |
Antwoord
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Austria 10-Day Vignette",
"countryIsocode": "AT",
"countryName": "Austria",
"duration": "10_DAYS",
"validFrom": "2026-01-01",
"validTo": "2027-01-31",
"vehicleCategoryId": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"vehicleCategoryName": "Car (up to 3.5t)",
"price": {
"amount": 11.5,
"currency": "EUR"
}
}
],
"meta": {
"page": 1,
"limit": 20,
"totalItems": 45,
"totalPages": 3
}
}
Ticket ophalen op ID
GET /products/tickets/:id
Padparameters
| Naam | Type | Verplicht | Beschrijving |
|---|
id | UUID | Ja | Het ticket-product-ID |
Antwoord
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Austria 10-Day Vignette",
"countryIsocode": "AT",
"countryName": "Austria",
"duration": "10_DAYS",
"validFrom": "2026-01-01",
"validTo": "2027-01-31",
"vehicleCategoryId": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"vehicleCategoryName": "Car (up to 3.5t)",
"price": {
"amount": 11.5,
"currency": "EUR"
},
"description": "Valid for 10 consecutive days on all Austrian motorways and expressways.",
"countries": ["AT"]
}