π¨ Hotels API#
π Search Destinations#
Endpoint
GET /api/hotels/v2/dictionaries/destinations
π¨ Search Hotel Offers#
Endpoint
POST /api/hotels/v2/search{
"destination_id": 78962,
"checkin": "2025-10-01",
"checkout": "2025-10-05",
"rooms": [
{
"adults": 2,
"children": [5]
}
],
"currency": "EUR",
"locale": "EN"
}
π Hotel Details#
Endpoint
GET /api/hotels/v2/offers/{{request_id}}
ποΈ Create Hotel Order#
Endpoint
POST /api/hotels/v2/orders{
"offer_id": "DLX123",
"guests": [
{
"first_name": "John",
"last_name": "Doe",
"birth_date": "1990-01-01",
"document": {
"type": "PASSPORT",
"number": "123456789"
}
}
],
"contact": {
"phone": "+123456789",
"email": "john.doe@mail.com"
}
}
π³ Hotel Payment#
Endpoint
POST /api/hotels/v2/orders/{{order_id}}/payment
β Hotel Void / Refund#
Void (for booked but not ticketed):
POST /api/hotels/v2/orders/{{order_id}}/void
Refund (for paid orders):
POST /api/hotels/v2/orders/{{order_id}}/refund
π API Version#
Air API version: v1 (last updated: July 2025)
Hotels API version: v2 (last updated: March 2025)
π§ͺ How to Use This Portal#
You can test any API method right here:1.
Select a method from the left panel
3.
Fill in required parameters (e.g. from = MOW, to = AYT or destination = Istanbul)
4.
Click Send and see the live response from our API
We provide API keys and technical onboarding materials on request.Modified atΒ 2025-12-08 09:44:33