Get a special offer
Conversations · GET /v1/conversations/:id/special-offers/:offerId
Get a special offer
GET
/v1/conversations/:id/special-offers/:offerIdNote
Read live from Airbnb. Same shape as the create response. The offer must belong to the conversation in the path.
Request
curl https://api.repull.dev/v1/conversations/164743/special-offers/1459920384 \ -H "Authorization: Bearer $REPULL_API_KEY"
Response
{
"id": "1459920384",
"conversationId": "164743",
"status": "active",
"listingId": "23892",
"airbnbListingId": "955656266214757921",
"checkIn": "2026-10-01",
"checkOut": "2026-10-05",
"nights": 4,
"guests": { "total": 3, "adults": 2, "children": 1, "infants": 0, "pets": 0 },
"totalPrice": 880,
"createdAt": "2026-09-22T18:00:00Z",
"expiresAt": "2026-09-23T18:00:00Z"
}AI