Skip to main content
POST
/
x
/
users
/
{id}
/
remove-follower
Remove follower
curl --request POST \
  --url https://api.example.com/x/users/{id}/remove-follower \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "account": "<string>"
}
'

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.

10 credits per call · All plans from $0.00012/credit
curl -X POST https://xquik.com/api/v1/x/users/44196397/remove-follower \
  -H "x-api-key: xq_YOUR_KEY_HERE" \
  -H "Content-Type: application/json" \
  -d '{
    "account": "myxaccount"
  }' | jq

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Content-Type
string
required
Must be application/json.

Path parameters

id
string
required
The X user ID of the follower to remove.

Body

account
string
required
X username or account ID of your connected account whose follower list should be updated.

Response

success
boolean
Always true on success.
{
  "success": true
}
Related: Follow User to follow a user, Unfollow User to stop following a user, or Get User to look up user details.