
Twitter Follow Checker
Pricing
$25.00/month + usage

Twitter Follow Checker
This tool is a high-performance, stealth-enabled scraper designed to determine whether one Twitter user follows another. It accepts two Twitter usernames as input and returns a boolean response indicating the follow relationship.
0.0 (0)
Pricing
$25.00/month + usage
1
Total users
4
Monthly users
4
Runs succeeded
>99%
Last modified
14 hours ago
You can access the Twitter Follow Checker programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "user_a": "elonmusk",12 "user_b": "BarackObama",13 "cookies": "[{\"domain\":\".x.com\",\"expirationDate\":1746856132.619477,\"hostOnly\":false,\"httpOnly\":true,\"name\":\"__cf_bm\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"nxqSkSFt_3UkBWH576nmL44QmPDWzVDjgIkLfeLHOsM-1746854332-1.0.1.1-.D.PjFVYMhjL77et4PsMZlLNYXg4KRzBUFRqAWpRcQbXf6H_5DIZQulrUK7tu34y3rdkEuyq6rjjJfYYxoXEs5vG9W8r.OWN.0WehXsCBOU\",\"id\":1},{\"domain\":\".x.com\",\"expirationDate\":1781195046.756188,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"_ga\",\"path\":\"/\",\"sameSite\":\"unspecified\",\"secure\":false,\"session\":false,\"storeId\":\"0\",\"value\":\"GA1.1.798476497.1746635047\",\"id\":2},{\"domain\":\".x.com\",\"expirationDate\":1781195575.696591,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"_ga_RJGMY4G45L\",\"path\":\"/\",\"sameSite\":\"unspecified\",\"secure\":false,\"session\":false,\"storeId\":\"0\",\"value\":\"GS2.1.s1746635046$o1$g0$t1746635575$j60$l0$h0\",\"id\":3},{\"domain\":\".x.com\",\"expirationDate\":1771085083.01971,\"hostOnly\":false,\"httpOnly\":true,\"name\":\"auth_token\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"e8ebde28ed35f60bbaa480fadf171a2706262770\",\"id\":4},{\"domain\":\".x.com\",\"expirationDate\":1771085083.370993,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"ct0\",\"path\":\"/\",\"sameSite\":\"lax\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"b49f42546ed0263e7ed05dd736255e27cb99c44fb82abe573b42ae3132c7a5272856579502280f5624892335fcc0c6a686836b689565d9d0aaf4ad2c630fb7d77a67b7863020e130eeb1ed7dbf907a0c\",\"id\":5},{\"domain\":\".x.com\",\"expirationDate\":1767339612.610054,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"guest_id\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"v1%3A172490945488285787\",\"id\":6},{\"domain\":\".x.com\",\"expirationDate\":1781414587.680152,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"guest_id_ads\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"v1%3A172490945488285787\",\"id\":7},{\"domain\":\".x.com\",\"expirationDate\":1781414587.680395,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"guest_id_marketing\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"v1%3A172490945488285787\",\"id\":8},{\"domain\":\".x.com\",\"expirationDate\":1771085083.019629,\"hostOnly\":false,\"httpOnly\":true,\"name\":\"kdt\",\"path\":\"/\",\"sameSite\":\"unspecified\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"0MprSsNU5W2zirK0Kdo6YW1QFh58oyeb4Qw5RChk\",\"id\":9},{\"domain\":\".x.com\",\"expirationDate\":1778390588.734748,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"night_mode\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"2\",\"id\":10},{\"domain\":\".x.com\",\"expirationDate\":1768061146.52658,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"personalization_id\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"\\\"v1_fo7TidorU55HXywHnSY3Yw==\\\"\",\"id\":11},{\"domain\":\".x.com\",\"expirationDate\":1778390593.659738,\"hostOnly\":false,\"httpOnly\":false,\"name\":\"twid\",\"path\":\"/\",\"sameSite\":\"no_restriction\",\"secure\":true,\"session\":false,\"storeId\":\"0\",\"value\":\"u%3D1877748387220799489\",\"id\":12},{\"domain\":\"x.com\",\"hostOnly\":true,\"httpOnly\":false,\"name\":\"lang\",\"path\":\"/\",\"sameSite\":\"unspecified\",\"secure\":false,\"session\":true,\"storeId\":\"0\",\"value\":\"en\",\"id\":13}]"14};15
16// Run the Actor and wait for it to finish17const run = await client.actor("deepanshusharm/twitter-follow-checker").call(input);18
19// Fetch and print Actor results from the run's dataset (if any)20console.log('Results from dataset');21console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);22const { items } = await client.dataset(run.defaultDatasetId).listItems();23items.forEach((item) => {24 console.dir(item);25});26
27// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Twitter Follow Checker API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Twitter Follow Checker API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-client
Other API clients include: