Documentation Index
Fetch the complete documentation index at: https://docs.xquik.com/llms.txt
Use this file to discover all available pages before exploring further.
Free - does not consume credits
curl -X PATCH https://xquik.com/api/v1/account \
-H "x-api-key: xq_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"locale": "tr"
}' | jq
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Must be application/json.
Body
Locale preference for the account. Must be one of en, tr, or es.
Response
200 OK
400 Invalid Input
401 Unauthenticated
429 Rate Limited
Always true on successful update.
{ "error": "invalid_input" }
Missing locale field or value is not one of en, tr, es.{ "error": "unauthenticated" }
Missing or invalid API key.{ "error": "rate_limit_exceeded", "message": "Too many requests. Try again later.", "retryAfter": 60 }
Too many requests. Wait for the Retry-After header before retrying.