Docs/Channels/Airbnb

Airbnb Special Offers

Create custom rate offers for guests and pre-approve booking requests.

POST/v1/channels/airbnb/offers

Example

# Create a special offer for a guest
curl -X POST https://api.repull.dev/v1/channels/airbnb/offers \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"threadId": "THREAD_123", "listingId": "ABC123", "checkIn": "2026-08-01", "checkOut": "2026-08-05", "pricePerNight": 200}'

# Pre-approve a booking request
curl -X POST https://api.repull.dev/v1/channels/airbnb/offers \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"threadId": "THREAD_123", "action": "pre-approve"}'
AI