VANITYPASS
B2B APIAI Concierge

AI Concierge Chat

Ask the AI concierge travel questions and get personalized recommendations.

AI Concierge Chat

Send a travel question or request to the AI concierge and receive an instant, context-aware response. The concierge understands travel patterns, can recommend destinations, explain booking options, and answer complex travel questions.

Request

POST /v1/concierge/chat

Body:

FieldTypeRequiredDescription
messagestringyesYour question or request.
session_idstringnoConversation session for multi-turn chat.
contextobjectnoUser profile, past bookings, preferences.

Response

{
  "success": true,
  "data": {
    "reply": "Based on your preferences, I'd recommend...",
    "session_id": "sess_abc123",
    "suggestions": [
      { "type": "destination", "name": "Barcelona", "reason": "..." }
    ]
  }
}

Try it

Sandbox-only. Try-it requests target https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.
POST/v1/concierge/chat

Sandbox credentials

Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.

curl -X POST 'https://cloud.vanitypass.com/v1/concierge/chat' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \
  -d '{"message":"I'm traveling to Barcelona in July. What should I do?","session_id":"sess_example"}'