Account
GET/v1/account/quota
Searches used today, and what is left of the free allowance
The live counter behind the X-Search-Quota-* headers, without having to make a search to see it. Reading it is free and does not count.
The day is YOUR calendar day: the allowance resets at midnight in your time zone, not at midnight UTC.
Required scope: account:read.
- Auth
- API key
- Scope
- account:read
- Rate limit
- READ
- Search quota
- Free
- Idempotency
- Not required
Responses
200 · SearchQuotaDto
Where the daily search allowance stands right now.
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 "$VACABEE_API_URL/v1/account/quota" \
-H "Authorization: Bearer $VACABEE_API_KEY"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.request('GET', '/v1/account/quota');This page does not name a typed method for this route yet. request reaches every route of the API, and there you set the idempotency key yourself. Installing and using the SDK

