Flight search, alternate basket
A variant of flight search that assembles the result basket differently. Use it when you want the alternate mix of results for the same query.
POST/Air/AirLowFareSearch2
Access requires the permission air_low_fare_search
The request and response are identical to AirLowFareSearch. The difference is internal: this endpoint selects and groups the returned itineraries with an alternate strategy. Send the same body and read the same fields.
Path parameters
None.
Query parameters
None.
Body parameters
Identical to AirLowFareSearch.
Request
curl -X POST https://api.hermeseus.com/api/Air/AirLowFareSearch2 \
-H "Content-Type: application/json" \
-d '{
"SessionId": "8f3c81d2-...",
"AdultCount": 1, "ChildCount": 0, "InfantCount": 0,
"PricingSourceType": "All", "RequestOption": "All",
"TravelPreference": { "CabinType": 3 },
"OriginDestinationInformations": [
{ "OriginLocationCode": "IST", "DestinationLocationCode": "DXB", "DepartureDateTime": "2026-10-12T00:00:00" }
]
}'Response
Identical in shape to AirLowFareSearch: { Success, SearchId, PricedItineraries[], Error }. Each itinerary carries a FareSourceCode you carry into revalidate and book.
Not sure which to use?
Start with AirLowFareSearch. Reach for this variant only if you specifically want its alternate result basket.

