Obsitian Mini
- Premium flight
- 3-night hotel stay
- Concierge support
A short, deliberate disappearance. Three mornings elsewhere, one tool call.
Book via APIThe world's first luxury travel platform built for the AI agents that act on behalf of the people who own them. One endpoint. Four packages. No queue.
Humans compare flights on a thousand websites. Their agents do not. Obsitian Island is the quiet alternative — signed requests, deterministic JSON, confirmed stays. Built for a guest who arrives through code.
Discover us via MCP tool or OpenAPI schema. No onboarding flow, no sales call. A single signed call returns a confirmation.
Stripe for cards, USDC for crypto. Off-session confirm, webhook-verified settlement, deterministic responses safe to hand to the principal.
Agents don't sleep, and neither does the platform. Every package is pre-underwritten and callable at any hour by any authenticated agent.
Each package is pre-negotiated, pre-underwritten, and callable by any authenticated agent. Prices are final.
A short, deliberate disappearance. Three mornings elsewhere, one tool call.
Book via APIThe agent books a week. The human lives it. Nothing to choose, already settled.
Book via APIOff the market for one weekend. No other guests. A numbered confirmation and a set of coordinates.
Book via APIA sovereign-grade retreat booked by a single orchestration agent. One signature, thirty arrivals.
Book via APIYour agent finds book_obsitian_island via the MCP registry or reads the OpenAPI schema.
A signed server-to-server POST /api/book with destination, dates, package, and payment token.
Payment clears over Stripe or USDC. Off-session confirm for agent flows; webhook-verified success.
A booking_id is returned instantly. The human receives the itinerary; the agent receives the receipt.
Written for the caller, not the reader. The documentation assumes an LLM, not a marketing audience. Runnable examples in curl, Python, and JavaScript, an MCP tool manifest, and a full error reference.
View Full Docs →curl -X POST https://obsitianisland.com/api/book \ -H "Authorization: Bearer $OBSITIAN_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "destination": "Maldives", "check_in": "2026-05-01", "check_out": "2026-05-08", "package_id": "obsitian-luxe", "payment_token": "pm_card_visa", "payment_method": "stripe" }' # → { "ok": true, "booking_id": "obk_...", "status": "pending" }
import os, requests r = requests.post( "https://obsitianisland.com/api/book", headers={"Authorization": f"Bearer {os.environ['OBSITIAN_API_KEY']}"}, json={ "destination": "Maldives", "check_in": "2026-05-01", "check_out": "2026-05-08", "package_id": "obsitian-luxe", "payment_token": "pm_card_visa", "payment_method": "stripe", }, timeout=15, ) r.raise_for_status() print(r.json())
const res = await fetch("https://obsitianisland.com/api/book", { method: "POST", headers: { "Authorization": `Bearer ${process.env.OBSITIAN_API_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ destination: "Maldives", check_in: "2026-05-01", check_out: "2026-05-08", package_id: "obsitian-luxe", payment_token: "pm_card_visa", payment_method: "stripe", }), }); const booking = await res.json(); console.log(booking);
Every booking includes the full sequence below. No upsells, no surprise add-ons, no extra taxes — the SKU price is what settles.
Your agent sends one POST /api/book. We reply within seconds with a booking_id and the payment state. No back-and-forth, no forms.
Once payment clears (card via Stripe ~instant · USDC on-chain ~5 min), the booking flips to confirmed. The agent gets the receipt; the principal gets an itinerary document by email.
48 hours before check-in a concierge emails the principal with: exact address, transfer details (driver name + vehicle), local contact, dietary and room preferences link.
A single WhatsApp / Signal line stays open 24/7 for the duration. One number, one concierge, one accountability path.
Destinations available today: Lisbon · Marrakech · Athens · Istanbul · Mexico City · Bangkok · Bali
Destinations: Maldives · Mykonos · Amalfi · Tuscany · Ibiza · Tulum · Phuket · Kyoto
Inventory pool: private islands in the Maldives, Seychelles, Fiji, Bahamas, Greek Cyclades. Exact island confirmed on booking based on date availability.
Destinations: Provence · Tuscany · Costa Smeralda · Lake Como · Mallorca · Cape Town · Los Cabos. Custom destinations considered with 45-day lead time.
Pending → Confirmed in under a minute for card. USDC confirmation follows the chain (typically 3–6 minutes on Ethereum mainnet). The booking_id is returned instantly regardless.
The agent books on behalf of a principal. The itinerary email collects traveler passport names, DOBs, and dietary preferences 48 hours before the trip. We never ask the agent for PII — only the principal.
Free cancellation more than 14 days before check-in. Between 14 and 3 days: 50% refund. Inside 3 days: no refund but one free date reschedule within 12 months. All refunds via the original payment rail.
Once, for free, if requested more than 7 days before check-in. Afterwards a 10% rebooking fee applies. Change via PATCH /api/booking/:id (shipping next release) or by replying to the concierge email.
The principal's responsibility. We confirm the destination requires a visa in the pre-trip email and can connect you with a same-day visa service at cost. Travel insurance is included up to $50,000 medical for every traveler.
Packages are pre-underwritten against our operator pool. We absorb destination and seasonality risk. The agent never needs to compare.
One number, 24/7, for the duration. Concierge authority includes hotel escalations, ground transport changes, medical referrals. Anything the concierge can't resolve escalates to Obsitian within 15 minutes.
Yes — set destination: "surprise" and we pick based on SKU, season, and a brief principal profile collected during the confirmation email. Most sovereign-grade bookings go this route.
Onboarding a limited number of agent-operator accounts. If you command an agent with discretionary travel authority, we would like to hear from it — or from you.
book_obsitian_island