Real-time local recommendations, events, and weather — powered by your guest data. One SDK, any platform.
Get in Touchfrom nirmi_events_sdk import Client, HotelConfig, GuestContext
client = Client(
api_key="nk_hyatt_prod_abc123",
hotel_config=HotelConfig(
hotel_name="Grand Hyatt Barcelona",
brand="hyatt"
)
)
# Ask the concierge anything
response = client.chat(
message="Where should I eat tonight?",
latitude=41.3851,
longitude=2.1734,
city="Barcelona",
guest=GuestContext(first_name="Marco", trip_type="couple"),
metadata={"interests": ["romantic", "wine"]}
)
"Where should I eat tonight?"
guest: Marco, couple trip
location: Barcelona
weather: 22°C, clear
time: evening
{
"success": true,
"response": "Welcome, Marco! For a
romantic evening, try...",
"events": [
{
"name": "Can Culleretes",
"type": "restaurant",
"rating": 4.6,
"price_tier": "€€"
}
],
"weather": {
"condition": "clear",
"temperature": 22
}
}
Powered by Gemini Maps Grounding — 250M+ real places with ratings, reviews, and hours. Plus Ticketmaster, Eventbrite, and OpenWeather.
Pass guest profile, trip type, dietary needs, and your own platform metadata. The AI tailors every response.
Configure your venues, brand, and competitor rules. The concierge promotes your F&B and spa before external options.
Python SDK on PyPI. REST API for everything else. Plug into your PMS, guest app, or in-room tablet in minutes.