Is there a substitute for the follower API in Roblox?

Is there a substitute for “https://api.roblox.com/user/following-exists” after the end of “api.roblox.com”?

Yes, https://friends.roblox.com/v1/user/following-exists
Docs: Swagger UI
Example:

curl -X 'POST' \
  'https://friends.roblox.com/v1/user/following-exists' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "targetUserIds": [
    1
  ]
}'

Response:

{
  "followings": [
    {
      "isFollowing": true,
      "isFollowed": false,
      "userId": 1
    }
  ]
}
1 Like

I will try this endpoint later, thank you.