10 credits per call · All plans from $0.00012/credit
Action-specific rate limit: The follow endpoint is limited to 20 requests per minute and 400 requests per day per account. This is separate from the general write tier (30 per 60s). Exceeding either limit returns 429 Too Many Requests.
curl -X POST https://xquik.com/api/v1/x/users/44196397/follow \
-H "x-api-key: xq_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"account": "myxaccount"
}' | jq
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard .
Must be application/json.
Path parameters
The X user ID of the account to follow.
Body
X username or account ID of your connected account to act as.
Response
{ "error" : "invalid_input" , "message" : "Invalid user ID or account" }
The user ID or account field is missing or malformed. { "error" : "unauthenticated" , "message" : "Missing or invalid API key" }
Missing or invalid API key. { "error" : "no_subscription" , "message" : "No active subscription" }
An active subscription is required. Subscribe from the dashboard . { "error" : "usage_limit_reached" , "message" : "Monthly usage limit reached" }
Your monthly usage quota has been exhausted. Usage resets at the start of your next billing cycle. { "error" : "x_write_failed" , "message" : "Failed to complete the action" }
The write action failed. Retry after a short delay.