
Social Media Finder
Pricing
$2.00 / 1,000 results

Social Media Finder
Search for public social media profiles related to given names or nicknames. Find profile handles and URLs across 13 popular social media platforms like TikTok, Twitch, LinkedIn, Medium and more. Export in JSON, CSV, HTML, use API, schedule and monitor runs, integrate scraped data with other tools.
3.9 (9)
Pricing
$2.00 / 1,000 results
63
Total users
1.7k
Monthly users
377
Runs succeeded
>99%
Last modified
7 months ago
You can access the Social Media Finder 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 "profileNames": [12 "mr beast"13 ],14 "socials": [15 "askfm",16 "discord",17 "facebook",18 "github",19 "instagram",20 "linkedin",21 "medium",22 "pinterest",23 "steam",24 "threads",25 "tiktok",26 "twitch",27 "youtube"28 ]29};30
31// Run the Actor and wait for it to finish32const run = await client.actor("tri_angle/social-media-finder").call(input);33
34// Fetch and print Actor results from the run's dataset (if any)35console.log('Results from dataset');36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);37const { items } = await client.dataset(run.defaultDatasetId).listItems();38items.forEach((item) => {39 console.dir(item);40});41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
📱 Social Media Finder API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Social Media Finder 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: