Skip to main content
POST
/
x
/
accounts
/
bulk-retry
Bulk retry X accounts
curl --request POST \
  --url https://xquik.com/api/v1/x/accounts/bulk-retry \
  --header 'x-api-key: <api-key>'

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
Bulk retry only clears transient and automated login-failure states. It does not update passwords, TOTP secret keys, passkeys, email challenges, locked accounts, or suspended accounts. Use re-authentication or reconnect for credential and 2FA fixes, and resolve locks or suspensions on X first.
Clears temporary login-failure state for accounts that can safely retry on the next read, write, monitor, or account action. Use it when the dashboard shows accounts with temporary issues.

What gets retried

Temporary issues are cleared

Xquik clears accounts whose stored failure reason is transient or automated. These accounts become eligible for the next automatic login attempt.

Credential fixes are skipped

Accounts that need fresh credentials or a security challenge stay unchanged. Use Re-authenticate or reconnect the account instead.

X restrictions stay blocked

Locked and suspended accounts stay unchanged. Resolve the restriction on X first, then re-authenticate or reconnect if needed.

Response is an aggregate

The API returns only cleared, the number of accounts reset for retry. Call List X Accounts before and after if you need per-account status.
The dashboard button follows the same model: it appears when accounts have temporary issues, asks for confirmation, clears retryable failures, then refreshes the account list. It does not perform the next login immediately.
curl -X POST https://xquik.com/api/v1/x/accounts/bulk-retry \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Headers

x-api-key
string
required
Your API key. Generate a key from the dashboard.

Response

cleared
integer
Number of accounts cleared for retry.
{
  "cleared": 3
}
Related: List X Accounts to check account statuses, or Re-authenticate to fix a specific account manually.
Last modified on May 23, 2026