Skip to main content

Flight Orders

POST

/api/v1/generic-api-service/flight/orders?page=0&size=100

The orders endpoint returns a paginated list of flight orders (bookings) filtered by a date range. Each item summarizes an order — PNR, route, direction, status, amount and dates. Use the page and size query parameters to page through results.

curl --location 'https://test-api.etscore.com/api/v1/generic-api-service/flight/orders?page=0&size=100' \
--header 'Accept-Language: en-US' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"filterType": "SALES",
"startDate": "2026-09-11",
"endDate": "2026-09-11"
}'