Property Search
Returns a list of property ids or full property content for the requested active properties. Use this API to retrieve property ids or full property content based on your search criteria.
Parameters
Name
Description
Accept
string
( header )
Must be application/json
Accept - Encoding
string
( header )
Must be gzip
Authorization
string
( header )
Must be Your PID
Must be Your API Key
Customer-Ip
string
( header )
Must be IP address of the customer, as captured by your integration. Send IPV4 addresses only.
Ensure your integration passes the customer’s IP, not your own. This value helps determine their location and other settings.
Also used for fraud recovery and other important analytics.
action
string
( query )
Must be "hotelSearch" as parameter
Action methods in Web API controller can have one or more parameters of different types. It can be either primitive type or complex type. Web API binds action method parameters either with URL's query string or with request body depending on the parameter type.
apiKey
string
( query )
Must be a valid API Key
The API Key provided to you is critical to the security of your request data – treat it like a password. Never include the raw value in any publicly accessible site or app code. You will be provided with an API key when you are approved to integrate TPS API.
ModeType
string
( query )
Must be either "Test" or "LIVE"
Your application must be approved from Adivaha Personnel. All the transactions will be treated as LIVE once the parameter is set to LIVE.
requestBody
array
( query )
Must be an array with the following parameters
cityId
string
( query )
Destination City Id ie. "cityId":"130443"
countryCode
string
( query )
Country Code of Destination ie. India = IN, Great Britain = GB)
currency
string
( query )
Preferred Currency
checkIn
string
( query )
The date by which a guest must check in. Must follow YYYY-MM-DD format. ie. "checkIn:2019-05-30"
checkOut
string
( query )
The date by which a guest must check out. Must follow YYYY-MM-DD format. ie. "checkIn:2019-05-31"
rooms
number
( query )
Number of rooms to be set for the search, can be between 1-7
adults
number
( query )
Number of adults to be set for the search, can be between 1-4
children
number
( query )
Number of children to be set for the search, can be between 1-2
childAge
number
( query )
Only when ChildCount is more than 0
REQUEST
API Endpoint: https://your-end-point/api/v1/travel-api/hotels/
header: array( 'Content-Type:application/json', 'Accept-encoding: gzip', 'PID:'ADD-YOUR-KEY', 'x-api-key:'ADD-YOUR-KEY' ); POST: { "action": "hotelSearch", "mode": "Test", "cityId": "130443", "countryCode": "IN", "currency": "INR", "checkIn": "2022-09-16", "checkOut": "2022-09-17", "rooms": "1", "adults": "1", "children": "0", "childAge": "0" }
Response
The API returns an HTTP response, which generally includes the result of the request invocation
{ "status": 200, "status_message": "OK", "responseData": { "HotelSearchResult": { "ResponseStatus": 1, "Error": { "ErrorCode": 0, "ErrorMessage": "" }, "TraceId": "49e79a5d-0048-4af8-add9-b4bd577834ce", "CityId": "130443", "Remarks": "india - land of mystries \"\/\/\" \" \/\/\/ \" ", "CheckInDate": "2022-09-09", "CheckOutDate": "2022-09-10", "PreferredCurrency": "INR", "NoOfRooms": 1, "RoomGuests": [ { "NoOfAdults": 2, "NoOfChild": 0, "ChildAge": null } ], "HotelResults": [ { "IsHotDeal": false, "ResultIndex": 3, "HotelCode": "22728114", "HotelName": "Hotel Delhi Regency", "HotelCategory": "", "StarRating": 3, "HotelDescription": "", "HotelPromotion": "", "HotelPolicy": "", "Price": { "CurrencyCode": "INR", "RoomPrice": 416.35, "Tax": 0, "ExtraGuestCharge": 0, "ChildCharge": 0, "OtherCharges": 62.13, "Discount": 0, "PublishedPrice": 478.48, "PublishedPriceRoundedOff": 478, "OfferedPrice": 478.48, "OfferedPriceRoundedOff": 478, "AgentCommission": 0, "AgentMarkUp": 0, "ServiceTax": 17.85, "TCS": 0, "TDS": 0, "ServiceCharge": 0, "TotalGSTAmount": 17.85, "GST": { "CGSTAmount": 0, "CGSTRate": 0, "CessAmount": 6.43, "CessRate": 10, "IGSTAmount": 11.43, "IGSTRate": 18, "SGSTAmount": 0, "SGSTRate": 0, "TaxableAmount": 62.13 } }, "HotelPicture": "https:\/\/b2b.tektravels.com\/Images\/HotelNA.jpg", "HotelAddress": "8184 Arakashan Road,Paharganj,Near New Delhi Railway Station,New Delhi,IN, , , , ", "HotelContactNo": "", "HotelMap": null, "Latitude": "", "Longitude": "", "HotelLocation": null, "SupplierPrice": null, "RoomDetails": [ ] }, { "IsHotDeal": false, "ResultIndex": 4, "HotelCode": "31482930", "HotelName": "Hotel Paragon Suites", "HotelCategory": "", "StarRating": 3, "HotelDescription": "", "HotelPromotion": "", "HotelPolicy": "", "Price": { "CurrencyCode": "INR", "RoomPrice": 691.3, "Tax": 0, "ExtraGuestCharge": 0, "ChildCharge": 0, "OtherCharges": 103.55, "Discount": 0, "PublishedPrice": 794.85, "PublishedPriceRoundedOff": 795, "OfferedPrice": 794.85, "OfferedPriceRoundedOff": 795, "AgentCommission": 0, "AgentMarkUp": 0, "ServiceTax": 28.57, "TCS": 0, "TDS": 0, "ServiceCharge": 0, "TotalGSTAmount": 28.57, "GST": { "CGSTAmount": 0, "CGSTRate": 0, "CessAmount": 10, "CessRate": 10, "IGSTAmount": 18.57, "IGSTRate": 18, "SGSTAmount": 0, "SGSTRate": 0, "TaxableAmount": 103.55 } }, "HotelPicture": "https:\/\/b2b.tektravels.com\/Images\/HotelNA.jpg", "HotelAddress": "A-260, Road # 6, Near IGI Aiport,NH 8, Mahipalpur,New Delhi,Delhi,IN, , , , ", "HotelContactNo": "", "HotelMap": null, "Latitude": "", "Longitude": "", "HotelLocation": null, "SupplierPrice": null, "RoomDetails": [ ] } ] } } }