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

Follow User

Follow 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/follow" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_id": "44196397"}'

Parameters

ParameterTypeRequiredDescription
user_idstringrequired

Numeric ID of the user to follow.

Example: 44196397

Response

FieldTypeDescription
statusstring

"success" when the follow is recorded.

Example response

{
  "status": "success"
}

Pricing for this endpoint

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

Related endpoints