Skip to content
POST/user/unfollow$0.0015 / call

Unfollow User

Unfollow a user as the authenticated account. Requires a logged-in session for the acting account. Billed at $0.0015 per call.

Request

curl -X POST "https://api.twitterapis.com/user/unfollow" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_id": "44196397"}'

Parameters

ParameterTypeRequiredDescription
user_idstringrequired

Numeric ID of the user to unfollow.

Example: 44196397

Response

FieldTypeDescription
statusstring

"success" when the unfollow is recorded.

Example response

{
  "status": "success"
}

Pricing for this endpoint

user/unfollow costs $0.0015 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints