Skip to main content
curl -G https://xquik.com/api/v1/x/followers/check \
  -d "source=xquikcom" \
  -d "target=elonmusk" \
  -H "x-api-key: xq_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2" | jq

Query parameters

source
string
required
Source username. The user whose follow action is being checked.
target
string
required
Target username. The user who may be followed by the source.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

sourceUsername
string
The source username from the request.
targetUsername
string
The target username from the request.
isFollowing
boolean
true if the source user follows the target user.
isFollowedBy
boolean
true if the target user follows the source user.
{
  "sourceUsername": "xquikcom",
  "targetUsername": "elonmusk",
  "isFollowing": true,
  "isFollowedBy": false
}
Next steps: Get User to look up full profile details for either user, or Get Account to check remaining usage quota.