Docs/API Reference/Quotes

Quotes

Calculate pricing quotes for potential stays.
GET/v1/quotes

Get a price quote for a stay

Query Parameters

property_idstringRequired

Property ID

check_indateRequired

Check-in date

check_outdateRequired

Check-out date

guestsintegerDefault: 1

Number 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