Search and Availability Request

Request

Method URL
POST api/v3/transfers/availability

Payload

Attribute Type Required Description
drop_location string REQUIRED One of the City, Airport(IATA), Hotel, Station code from the provided master data
pickup_location string REQUIRED One of the City, Airport(IATA), Hotel, Station code from the provided master data
pickup_date date REQUIRED Date of pickup
pickup_time time REQUIRED Format: “hh:mm” (hours:minutes)
currency string OPTIONAL Preferred currency for the prices in the results. Default is the agent’s base currency.

Format: Three letter ISO Currency code.In case a supplier supports the requested currency, answered prices from that supplier will be in the requested currency.
paxes object REQUIRED An object representing the paxes. paxes is described later in the document.
client_nationality string REQUIRED Nationality of the guest. Format: Two-letter ISO Country code
preferred_language string OPTIONAL One of the language code from the provided master data
response string OPTIONAL Allowed values: “fast” or “full” Default is “fast”.
rates string OPTIONAL Allowed values: “comprehensive” or “concise” Default is “concise”. Concise will return only the rate with lowest price for all qualifying transfers. Comprehensive will return a full set of rates for all qualifying transfers.

Paxes

Attribute Type Required Description
adults integer REQUIRED The number of adults in the vehicle
children_ages array OPTIONAL An array with the ages of children in the vehicle

E.g. 2 children aged 10 and 15 years [10, 15]

Sample Search and Availability Payload

{
    "drop_location": "A!LGW",
    "pickup_location": "A!LHR",
    "pickup_date": "2017-10-12",
    "client_nationality": "IN",
    "pickup_time": "23:15",
    "rates": "comprehensive",
    "currency": "INR",
    "paxes": {
        "adults": 2,
        "children_ages": []
    }
}