Quotes
Calculate pricing quotes for potential stays.
GET
/v1/quotesGet a price quote for a stay
Query Parameters
property_idstringRequiredProperty ID
check_indateRequiredCheck-in date
check_outdateRequiredCheck-out date
guestsintegerDefault: 1Number of guests
Request
curl https://api.repull.dev/v1/quotes?property_id=123&check_in=2026-06-01&check_out=2026-06-05 \ -H "Authorization: Bearer sk_test_YOUR_KEY" \ -H "X-Workspace-Id: YOUR_WORKSPACE_ID"
Response
{
"data": {
"propertyId": "123",
"checkIn": "2026-06-01",
"checkOut": "2026-06-05",
"nights": 4,
"pricing": {
"basePrice": 1000,
"cleaningFee": 150,
"fees": [],
"taxes": [{ "type": "LODGING_TAX", "amount": 90, "rate": 0.09 }],
"total": 1240
},
"currency": "USD"
}
}AI