Get schedule for a city pair on a date
curl --request GET \
--url https://staging.api.prexsell.com/v2/offers/schedule{
"data": {
"source": "PrexSell",
"total": 7,
"currency": "UAH",
"passengers": 1,
"departures": [
{
"id": "eyJ...",
"company": {
"id": "clco1",
"name": "Ecolines",
"slug": "ecolines",
"logoUrl": "https://example.com/logo.png"
},
"departureDateTime": "2026-06-10T06:30:00+03:00",
"arrivalDateTime": "2026-06-11T08:45:00+02:00",
"travelTimeMinutes": 1575,
"routeName": "ΠΠΈΡΠ² β ΠΠ°ΡΡΠ°Π²Π°",
"price": {
"amount": 1450,
"currency": "UAH"
},
"seatsLeft": 22
}
]
}
}Offers
Get schedule for a city pair on a date
Returns a dated timetable of individual departures for the given city pair. Each row includes departure/arrival datetime (wall-clock, timezone-aware), company, route name, travel time, and price. Sorted by departure time ascending. Paginated with take/skip.
GET
/
v2
/
offers
/
schedule
Get schedule for a city pair on a date
curl --request GET \
--url https://staging.api.prexsell.com/v2/offers/schedule{
"data": {
"source": "PrexSell",
"total": 7,
"currency": "UAH",
"passengers": 1,
"departures": [
{
"id": "eyJ...",
"company": {
"id": "clco1",
"name": "Ecolines",
"slug": "ecolines",
"logoUrl": "https://example.com/logo.png"
},
"departureDateTime": "2026-06-10T06:30:00+03:00",
"arrivalDateTime": "2026-06-11T08:45:00+02:00",
"travelTimeMinutes": 1575,
"routeName": "ΠΠΈΡΠ² β ΠΠ°ΡΡΠ°Π²Π°",
"price": {
"amount": 1450,
"currency": "UAH"
},
"seatsLeft": 22
}
]
}
}Query Parameters
URL-friendly slug of the departure city.
Minimum string length:
1Example:
"kyiv"
URL-friendly slug of the arrival city.
Minimum string length:
1Example:
"warsaw"
Travel date in ISO YYYY-MM-DD format.
Example:
"2026-06-10"
Number of passengers (1β10).
Required range:
1 <= x <= 10Example:
1
Currency code for prices.
Available options:
UAH, PLN, CZK, EUR, USD Example:
"UAH"
Language code for city name translations.
Available options:
UK, PL, CS, EN, RU Example:
"UK"
Maximum number of departures to return (1β100).
Required range:
1 <= x <= 100Example:
50
Number of departures to skip for offset pagination.
Required range:
x >= 0Example:
0
Response
Schedule of departures for the given city pair and date.
Show child attributes
Show child attributes
βI
