v3
latestOpenAPI 3.0.32026-08-02415689.9 KBVerification
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
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
Example response
{
"follow": true
}