Vinjete
Pridobite razpoložljive avtocestne vinjete. Vinjete so digitalne cestninske dovolilnice, potrebne za vožnjo po avtocestah v različnih evropskih državah.
Seznam vinjet
GET /products/tickets
Parametri poizvedbe
| Name | Type | Required | Opis |
|---|
page | integer | Ne | Številka strani (privzeto: 1) |
limit | integer | Ne | Elementov na stran (privzeto: 50, maks: 100) |
countryIsocode | string | Ne | Filtriranje po ISO kodi države (npr. AT, CZ, CH) |
vehicleCategoryId | string | Ne | Filtriranje po UUID kategorije vozila |
Odgovor
{
"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
}
}
Pridobi vinjeto po ID-ju
GET /products/tickets/:id
Parametri poti
| Name | Type | Required | Opis |
|---|
id | UUID | Da | ID vinjetnega produkta |
Odgovor
{
"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"]
}