Process travel queries using YGO AI's advanced multi-agent system with augmented, multi-source hotel data. Supports natural language, structured data, or hybrid inputs for maximum flexibility.
Choose Your Model:
| Model | Speed | Use Case | Best For |
|---|---|---|---|
packagelist | <3s | Package search with smart filters | Hotel discovery, search refinement |
hotelinfo | <2s | Hotel details and amenities | "Ask about hotel" features, Q&A |
hotelreviews | <2s | Guest review analysis | Review summaries, sentiment insights |
activityinfo | <2s | Activity/tour information | Activity details, tour Q&A |
"" (empty) | 5-10s | Full trip planning | Complex itinerary generation |
Key Capabilities:
How It Works:
Coming Soon: Voice input support for hands-free experiences.
curl --location --request POST 'https://api.ygo.ai/v1/sendMessage' \
--header 'Content-Type: application/json' \
--data-raw '{
"ChatID": "chat_abc123",
"Content": "I want a beach hotel in Greece with pool for around 5 nights in August under €1500",
"UserID": "user_customer123",
"Locale": "en",
"Model": "packagelist"
}'{
"Data": {
"ID": "run_xyz789",
"ChatID": "chat_abc123",
"UserID": "user_customer123",
"Content": "Find me hotels in Barcelona with pool for around 5 nights",
"Locale": "en",
"Model": "packagelist",
"TripParams": {
"Destination": "Barcelona",
"DestinationName": "Barcelona, Spain",
"StartDate": "2025-06-15",
"EndDate": "2025-06-20",
"FlexibleNights": [
4,
5,
6
],
"StayDirectDuration": 5,
"TravellersAmount": 2,
"Latitude": 41.3851,
"Longitude": 2.1734,
"Packages": [
{
"ID": 12345,
"HotelName": "Hotel Barcelona Beach",
"Price": {
"Amount": 850,
"Currency": "EUR",
"PerPerson": true
},
"Details": {
"Hotel": {
"Features": {
"Pool": "yes",
"Wifi": "yes",
"AirCondition": "yes"
},
"StarRating": 4,
"Images": [
{
"URL": "https://cdn.ygo.ai/hotels/12345_main.jpg"
}
]
}
},
"ConversionScore": 0.92
}
]
},
"Messages": [
{
"Role": "assistant",
"Content": "I found 45 hotels in Barcelona with pool for 4-6 nights starting June 15th. The results are sorted by best match based on your preferences. Prices range from €750 to €1,450 per person."
}
],
"QuickReplies": [
"Show only 4-star hotels",
"Filter by budget under €1000",
"Hotels near the beach",
"Add gym and spa filter"
],
"Intents": [
"PACKAGE_SEARCH",
"HOTEL_WITH_POOL"
],
"Instructions": []
},
"Error": null
}