Vignette Tickets
Retrieve available highway vignette tickets. Vignettes are digital toll passes required for driving on motorways in various European countries.
List Tickets
GET /products/tickets
Query Parameters
| Name | Type | Required | Description |
|---|
page | integer | No | Page number (default: 1) |
limit | integer | No | Items per page (default: 50, max: 100) |
countryIsocode | string | No | Filter by country ISO code (e.g., AT, CZ, CH) |
vehicleCategoryId | string | No | Filter by vehicle category UUID |
Response
{
"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
}
}
Get Ticket by ID
GET /products/tickets/:id
Path Parameters
| Name | Type | Required | Description |
|---|
id | UUID | Yes | The ticket product ID |
Response
{
"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"]
}