GET
/
twitter
/
user
/
check_follow_relationship
curl --request GET \
  --url https://api.twitterapi.io/twitter/user/check_follow_relationship \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "following": true,
    "followed_by": true
  },
  "status": "success",
  "message": "<string>"
}

Authorizations

X-API-Key
string
header
required

Query Parameters

source_user_name
string
required

screen name of the source user

target_user_name
string

screen name of the target user

Response

200
application/json

Check follow relationship response

The response is of type object.