> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voyantcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to the Voyant API

> Build powerful travel booking applications with the Voyant API

## Overview

The Voyant API is a standalone, usage-based product that enables travel agencies, tour operators, and booking platforms to build custom travel websites and applications. Access products, manage bookings, process payments, and handle customer data programmatically while paying only for the calls you make.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get your API key and make your first request in under 5 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore complete endpoint documentation with examples
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to authenticate your API requests
  </Card>

  <Card title="Workspaces" icon="building" href="/concepts/workspaces">
    Understand workspaces and data isolation
  </Card>
</CardGroup>

## Key capabilities

### Product catalog management

Access and search your complete travel product inventory including tours, hotels, experiences, packages, and transfers. Each product includes:

* Detailed descriptions and media
* Pricing models (per person, per room, per group)
* Availability and inventory tracking
* Extensions and add-ons
* Multi-language content

### Booking engine

Create and manage bookings through a flexible wizard-based flow or direct booking creation:

* Multi-step booking wizard with session management
* Passenger and room assignments
* Add-on selection
* Payment collection
* Document generation (invoices, vouchers, itineraries)

### Dynamic pricing

Calculate accurate prices in real-time with support for:

* Multiple pricing models (per person, per room, per group, per option)
* Pricing rules and conditions (early bird, group discounts, seasonal adjustments)
* Tax calculation with jurisdiction support
* Multi-currency support
* Departure-specific price overrides

### Payments processing

Integrate payment collection with:

* Stripe for international payments
* Netopia for Romanian market
* Payment session management
* Webhook notifications
* Refund handling

## Architecture

The Voyant API is built on modern cloud infrastructure:

<CardGroup cols={2}>
  <Card title="Edge delivery" icon="globe">
    Global edge network for low-latency API access
  </Card>

  <Card title="Resilient data layer" icon="database">
    Highly available, auto-scaling relational storage
  </Card>

  <Card title="Type-safe models" icon="code">
    End‑to‑end type safety for schemas and queries
  </Card>

  <Card title="High performance" icon="bolt">
    Lightweight HTTP runtime optimized for fast request handling
  </Card>
</CardGroup>

## Multi-tenant by design

All API operations are workspace-scoped for security and isolation:

* Each API key is tied to a specific workspace
* Data is automatically filtered by workspace context
* Row-level security ensures workspace isolation
* No cross-workspace data leakage

<Note>
  All endpoints require workspace authentication via API key. See [Authentication](/authentication) for details.
</Note>

## Rate limits

Voyant API requests are rate-limited per workspace to ensure fair usage across the platform:

**Live workspaces:**

* **3,000 requests per minute**
* **30 requests per second** burst

**Sandbox workspaces:**

* **100 requests per minute**
* **5 requests per second** burst

Usage-based pricing applies to every request—no subscription tiers.

Rate limit information is included in response headers:

```
X-RateLimit-Limit: 3000
X-RateLimit-Remaining: 2988
X-RateLimit-Reset: 1704067200
```

<Tip>
  Reach out to [help@voyantcloud.com](mailto:help@voyantcloud.com) before planned traffic spikes so we can pre-warm capacity and monitor your workspace.
</Tip>

## Support and resources

<CardGroup cols={2}>
  <Card title="Support" icon="envelope" href="mailto:help@voyantcloud.com">
    Get help from our technical team
  </Card>

  <Card title="Changelog" icon="clock-rotate-left" href="/changelog">
    Track API updates and new features
  </Card>
</CardGroup>

## Next steps

<Steps>
  <Step title="Get your API key">
    Generate an API key from your Voyant dashboard settings
  </Step>

  <Step title="Make your first request">
    Follow the [quickstart guide](/quickstart) to authenticate and fetch products
  </Step>

  <Step title="Explore the API">
    Browse the [API reference](/api-reference/introduction) for complete endpoint documentation
  </Step>

  <Step title="Build your integration">
    Implement booking flows, pricing calculations, and payment processing
  </Step>
</Steps>
