v3

latestOpenAPI 3.0.32026-08-02415689.9 KB
Verification

Check Follow

Checks if one account follows another. User 1 is the account that should be followed, User 2 is the one you want to check. For example: "Does Elon Musk (user_2) follow SorsaApp (user_1)?" Pass only one identifier per side: link, username, or ID. Returns follow: true if the relationship exists, and user_protected: true if the checked user's profile is private.

post/check-follow

Request body

user_id_1string
user_id_2string
user_link_1string
user_link_2string
username_1string
username_2string

Example request

{
  "user_id_1": "44196397",
  "user_id_2": "44196397",
  "user_link_1": "https://twitter.com/elonmusk",
  "user_link_2": "https://twitter.com/elonmusk",
  "username_1": "elonmusk",
  "username_2": "elonmusk"
}

Response

OK

followboolean

true if the user follows the target account.

user_protectedboolean

true if the checked user's account is protected.

Example response

{
  "follow": true
}