Twitter Scraper

ENDPOINTS
GET/users/check-follow

Check Follow

Check whether one user follows another, and whether they follow back.

QUERY PARAMS

The user who may be following. Username, numeric user ID or any x.com / twitter.com profile link.

Example: elonmusk

The user who may be followed. Username, numeric user ID or any x.com / twitter.com profile link.

Example: nasa

{
  "source": {
    "id": "44196397",
    "username": "elonmusk",
    "link": "https://x.com/elonmusk"
  },
  "target": {
    "id": "11348282",
    "username": "NASA",
    "link": "https://x.com/NASA"
  },
  "source_follows_target": true,
  "target_follows_source": false,
  "can_dm": false
}