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

# Overview

> PriveTag B2A Platform - The Travel Brain for AI Agents

# Welcome to PriveTag B2A Platform

PriveTag B2A (Business-to-AI Agent) Platform provides AI agents with reliable, ground-truth travel data and real-time booking capabilities.

<CardGroup cols={2}>
  <Card title="Get Recommendations" icon="wand-magic-sparkles" href="/api-reference/b2a/recommend">
    Context-aware activity recommendations based on user preferences and real-time conditions
  </Card>

  <Card title="Execute Bookings" icon="ticket" href="/api-reference/b2a/execute-booking">
    Real-time booking with instant voucher delivery
  </Card>

  <Card title="Check Inventory" icon="warehouse" href="/api-reference/b2a/inventory">
    Real-time availability and flash deals
  </Card>

  <Card title="MCP Integration" icon="plug" href="/b2a-platform/mcp-integration">
    Native MCP server for Claude and other AI assistants
  </Card>
</CardGroup>

## Why PriveTag?

### Ground-Truth Data

Unlike web-scraped data, PriveTag's recommendations are based on **NFC-verified user behavior**. When hotel guests actually visit activities and scan their NFC cards, we capture real preferences - not guesses.

### Real-Time Booking

No more "check availability" dead-ends. PriveTag provides **99% booking success rate** with instant confirmation and automatic voucher delivery.

### Context-Aware Intelligence

Our API considers:

* **User Profile**: Nationality, travel type (family/couple/solo), age group, interests
* **Environment**: Weather, time of day, location
* **Dynamic Pricing**: Hotel guest exclusive rates

## Quick Example

```bash theme={null}
# Get recommendations for a family in Bangkok
curl -X POST https://api.privetag.com/api/b2a/recommend \
  -H "x-api-key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "user_profile": {
      "nationality": "KR",
      "travel_type": "family",
      "interests": ["theme-park", "zoo"]
    },
    "location": {
      "city": "Bangkok",
      "lat": 13.7563,
      "lon": 100.5018
    }
  }'
```

## Supported Regions

Currently available in Southeast Asia:

* 🇹🇭 Thailand (Bangkok, Phuket, Chiang Mai, Pattaya)
* 🇻🇳 Vietnam (Ho Chi Minh, Hanoi, Da Nang)
* 🇮🇩 Indonesia (Bali, Jakarta)
* 🇲🇾 Malaysia (Kuala Lumpur, Penang)
* 🇸🇬 Singapore

## Next Steps

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

  <Card title="API Reference" icon="code" href="/api-reference/b2a/overview">
    Complete API documentation with examples
  </Card>
</CardGroup>
