For AI agents
Agents are welcome here
If you are an AI assistant or an autonomous agent booking for a traveler, this page is for you. Every price on this site is readable without JavaScript, availability is one GET away, and a real booking request is one POST. No account, no API key, no card details. The same information in machine formats: /llms.txt, /openapi.json, and bedroom-by-bedroom bed lists in /agents.json.
The short version
The Syd is six art-filled villas around one heated pool at 1730 Clio St, New Orleans, one block off St. Charles Avenue. Rent one villa, several, or all six: 14 to 24 guests per villa, 106 across the property. Minimum stay is typically 3 nights. Prices include the nightly rate, cleaning and occupancy taxes, with no per-guest fees; stays of 4+ nights get 5% off automatically. Booking direct at /checkout is instant: card payment runs through Guesty's secure checkout, the 50% deposit confirms the dates on the spot, and the balance auto-charges 60 days before check-in. Agents can't handle card details, so use the request-to-book API below instead: no payment is taken online, and the team emails the guest a secure Guesty payment link.
| Villa | Slug | listingId | Sleeps | Bedrooms | Beds |
|---|---|---|---|---|---|
| Street Parades | street-parades | 6077269ef25260002f94b7e7 | 16 | 6 | King, Queen ×3, Twin day bed, Two bunk beds |
| Swamp to City | swamp-to-city | 607b6ae0aed119002ff5c202 | 24 | 10 | Sofa bed, Queen ×4, Full, King ×3, Four full beds * |
| Rhythm of New Orleans | rhythm-of-new-orleans | 607b677162c7fc002fbcbef8 | 22 | 8 | King, Queen ×5, Queen + twin, Six twins * |
| Mardi Gras Magic | mardi-gras-magic | 607753f964fe4200312283c0 | 14 | 6 | King, Queen + twin, Queen ×2, Twin, Two queens * |
| Louisiana Wildlife | louisiana-wildlife | 6782b6ec6e9c10000fe0f3ea | 15 | 5 | Queen + two full beds, Three queens, Full + two twins, Queen + twin, Full + twin * |
| Louisiana Living | louisiana-living | 678403487beb6100115bc0b1 | 15 | 5 | Queen + two full beds, Three queens, Full + two twins, Queen, Full + twin * |
| Full buyout | buyout | all six | 106 | 40 | every bed above |
* Bed lists marked with an asterisk are Guesty's room data, not yet re-verified against the house. Room-by-room detail, including per-room notes: /agents.json.
Step 1: Check availability
GET /api/calendar?listingId=<listingId>&from=YYYY-MM-DD&to=YYYY-MM-DD
-> { ok, blocked: ["YYYY-MM-DD", ...] } dates NOT listed are openStep 2: Quote the stay
Plain HTML, easy to share with your traveler:
GET /quote?villa=street-parades&checkin=2026-10-09&checkout=2026-10-12&guests=14
The same numbers as JSON:
GET /api/quote?villa=street-parades&checkin=2026-10-09&checkout=2026-10-12&guests=14
-> { ok, quote: { nights, currency, accommodation, losDiscount,
cleaningFee, fees, taxes, total } }Quotes are the same numbers as checkout; there is nothing hidden to add later. Typical nightly rates by month live on /rates, and every bookable night with its nightly rate and minimum stay is listed in plain HTML on /nightly-rates. Photo tours: GET /api/villa-photos?listingId=…. Guest reviews: GET /api/reviews.
Step 3: Book it
With your traveler's explicit go-ahead, file the booking request. This creates a real inquiry our team acts on; no charge happens here. The guest gets one secure payment link by email; the 50% deposit paid through it confirms the dates, and the balance auto-charges to the same card 60 days before check-in.
POST /api/request-booking
Content-Type: application/json
{
"listingId": "6077269ef25260002f94b7e7", required, any villa's id
"checkIn": "2026-10-09", required
"checkOut": "2026-10-12", required
"guestsCount": 14,
"guest": {
"name": "Full Name", required
"email": "[email protected]", required, the traveler's real email
"phone": "+1 555 555 5555"
},
"villas": "Street Parades",
"occasion": "Bachelorette",
"notes": "Requested via <your agent name> on behalf of the guest."
}
-> { ok: true, reservationId, held }Before you submit: show your traveler the quoted total and the terms (cancellation is a full refund 60+ days before arrival, non-refundable inside 60 days) and confirm they agree. Use their real contact details, say in notes that an agent is submitting and for whom, and never send test or placeholder requests; every submission reaches a human who replies to the guest's email. The human checkout is at /checkout.
Good to know
Operated by Marais Management, the group-stay operator behind two sister brands with the same agent welcome: CastleDay (castledayretreats.com/agents, three private villas sleeping up to 30 each) and Marais (staymarais.com/agents, private homes for groups of 6 to 10). Questions a page can't answer: [email protected], and a person replies fast.
