Transfers
POST/v1/transfers/searches
Live transfer availability for a route
One call, one answer — there is no session to poll. Each offer carries a quoteId valid for about 20 minutes; after that the answer is 410 offer_expired and you search again.
This call reaches the supplier and therefore counts against your search allowance. X-Search-Billable on the response says whether it did.
- Auth
- API key
- Scope
- transfers:search
- Rate limit
- SEARCH
- Search quota
- Counts
- Idempotency
- Idempotency-Key
Request headers
Request body
SearchTransfersDto — required, sent as application/json.
Responses
200 · TransferSearchResultDto
Errors
Every one of these carries the same envelope. What each error.type means, and whether a retry can succeed, is on the error index — once, for all operations.
Response headers
Set on every response of this operation, successful or not.
Example
curl -sS -X POST "$VACABEE_API_URL/v1/transfers/searches" \
-H "Authorization: Bearer $VACABEE_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{
"from": {
"type": "IATA",
"code": "LIS"
},
"to": {
"type": "IATA",
"code": "LIS"
},
"outbound": "2026-11-02T08:30:00",
"adults": 1
}'Set VACABEE_API_URL to https://api.vacabee.com with a live key, or to https://sandbox-api.vacabee.com with a vcb_test_ key. Binding a host to one kind of key is planned and is not enforced by the host yet, so nothing stops a key from being answered at the wrong base URL — assert the prefix against your configured URL yourself. What the sandbox answers
TypeScript SDK
await vacabee.transfers.search(…);The typed method sends the right headers, derives the idempotency key where one is required, and returns the response type generated from this document. Installing and using the SDK

