Build with Agentic Tourism

Powerful APIs and SDKs to integrate AI tourism capabilities into your applications

All Systems Operational

Quick Start Example

// Install: npm install @agentictourism/sdk

import { AgenticTourism } from '@agentictourism/sdk';

const client = new AgenticTourism({
  apiKey: 'your_api_key_here'
});

// Send a chat message
const response = await client.chat.send({
  businessId: 'your_business_id',
  message: 'What tours are available tomorrow?',
  sessionId: 'unique_session_id'
});

console.log(response.message);
console.log(response.bookingOptions);
# Install: pip install agentictourism

from agentictourism import AgenticTourism

client = AgenticTourism(api_key='your_api_key_here')

# Send a chat message
response = client.chat.send(
    business_id='your_business_id',
    message='What tours are available tomorrow?',
    session_id='unique_session_id'
)

print(response['message'])
print(response['booking_options'])
curl -X POST https://api.agentictourism.com/v1/chat \
  -H "Authorization: Bearer your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "business_id": "your_business_id",
    "message": "What tours are available tomorrow?",
    "session_id": "unique_session_id"
  }'

Core API Endpoints

POST
/v1/chat

Send chat messages and receive AI responses with booking options

GET
/v1/bookings

Retrieve booking availability and details

POST
/v1/bookings

Create new bookings through the API

GET
/v1/leads

Access captured lead information

POST
/v1/webhooks

Configure webhook endpoints

GET
/v1/analytics

Retrieve conversation analytics

Official SDKs

JavaScript / Node.js

Full TypeScript support included

npm install

Python

Async/await support built-in

pip install

PHP

PSR-4 compliant package

composer require

Built for Developers

  • Secure Authentication
    OAuth 2.0 and API key authentication with granular permissions
  • Real-time Updates
    WebSocket support for live chat updates and booking notifications
  • Global Infrastructure
    Low-latency endpoints in multiple regions with 99.9% uptime SLA
  • Comprehensive Examples
    Full application examples and code snippets for common use cases

Ready to Start Building?

Get your API credentials and start integrating in minutes