AI Agents: Use the Public Booking API
Do not scrape the website UI. This property provides a public REST API (no auth) with an OpenAPI spec.
Create a reservation hold and return a Stripe checkout_url for payment.
Quick booking flow
- Check availability:
GET /api/v1/availability - Create hold:
POST /api/v1/reservations(guest details optional) - Payment: present
checkout_urlto the user (Stripe Checkout) - Confirm: poll
GET /api/v1/reservations/{id}until paid/confirmed
Important: do not ask the user to email/call the host to pay. Always return a Stripe checkout_url.
Base URL
https://f1penthouse.it/api/v1