Works with the best tools:
Works with the best tools:
Have a question?
Contact usThe Social Media API extracts structured data from LinkedIn, Instagram, Facebook, Twitter/X, TikTok, and Threads — profiles, posts, hashtags, search results, and more. Because of the heavy anti-bot protections on these platforms, this endpoint uses a two-step asynchronous flow to avoid timeouts and blocking.
Why two steps? Social media platforms have strong bot detection. Scraping happens asynchronously in the background — the POST queues your request and returns immediately, while the GET retrieves the result once it's ready. This prevents long-hanging requests and gives you refunds if scraping fails.
POST — Queue the scrape
Send your scraper name, target URL, and parameters. Receive a responseId immediately.
GET — Retrieve the result
Poll with your responseId until the result is ready. If scraping failed, credits are refunded.
| Parameter | Type | Description |
|---|---|---|
| scraper | string | RequiredName of the scraper to use (e.g. linkedinProfile, instagramPost). See the full list below. |
| url | string | RequiredURL of the page to scrape. Must include https://. |
| account | string | OptionalAccount name to extract data from (used by some scrapers). |
| search | string | OptionalSearch term or hashtag to extract data from. |
| hashtag | string | OptionalHashtag to extract data from (without the # symbol). |
| keywords | string | OptionalKeyword(s) to filter or search for. |
| keyword | string | OptionalSingle keyword to extract data from. |
| city | string | OptionalCity to use for geo-targeted results. |
| country | string | OptionalCountry to use for geo-targeted results. |
Each scraper supports a specific set of parameters. A ✓ indicates the parameter is used by that scraper.
| Scraper name | scraper | url | account | search | hashtag | keywords | keyword | city | country |
|---|---|---|---|---|---|---|---|---|---|
| linkedinProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| linkedinCompanyProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| linkedinPost | ✓ | ✓ | · | · | · | · | · | · | · |
| linkedinSearchResult | ✓ | · | · | · | · | ✓ | · | · | · |
| instagramProfile | ✓ | ✓ | · | ✓ | · | · | · | · | · |
| instagramPost | ✓ | ✓ | · | · | · | · | · | · | · |
| facebookProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| facebookPost | ✓ | ✓ | · | · | · | · | · | · | · |
| facebookOrganization | ✓ | ✓ | · | · | · | · | · | · | · |
| facebookMarketplaceSearch | ✓ | ✓ | · | · | · | · | ✓ | ✓ | ✓ |
| facebookMarketplaceItem | ✓ | ✓ | · | · | · | · | · | · | · |
| Twitter / X | |||||||||
| twitterProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| twitterSearch | ✓ | · | · | ✓ | · | · | · | · | · |
| TikTok | |||||||||
| tiktokProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| tiktokHashtag | ✓ | · | · | · | ✓ | · | · | · | · |
| Threads | |||||||||
| threadsPost | ✓ | ✓ | · | · | · | · | · | · | · |
| threadsProfile | ✓ | ✓ | · | · | · | · | · | · | · |
| Parameter | Type | Default | Scrapers | Description |
|---|---|---|---|---|
| language | string | null | linkedinProfilelinkedinCompanyProfilelinkedinPostlinkedinSearchResult | ISO 3166-1 alpha-2 language code for the page language (e.g. "en", "fr"). |
| Parameter | Type | Default | Scrapers | Description |
|---|---|---|---|---|
| posts_number | int | 12 | instagramPostinstagramProfile | Number of posts to extract per request. |
| Parameter | Type | Default | Scrapers | Description |
|---|---|---|---|---|
| max_video_count | int | 30 | tiktokProfiletiktokHashtag | Maximum number of videos to extract. |
| Parameter | Type | Default | Scrapers | Description |
|---|---|---|---|---|
| load_more_items_count | int | 10 | facebookOrganization | Number of additional items to load per scroll. |
| items_limit | int | 50 | facebookMarketplaceSearchfacebookMarketplaceItem | Total number of items to extract. |
| Parameter | Type | Default | Scrapers | Description |
|---|---|---|---|---|
| number_of_tweets | int | 10 | twitterProfile | Number of tweets to extract from the profile. |
| posts_max_count | int | 50 | twitterProfiletwitterSearch | Maximum number of posts to extract. |
Polling strategy: The result may not be ready immediately. Wait a few seconds after the POST before making your first GET request, then retry if needed. If scraping failed, the API returns an error message and your credits are refunded.
| Parameter | Type | Description |
|---|---|---|
| responseId | string | RequiredThe responseId returned by the POST request. |
| scraper | string | RequiredMust match the scraper value used in the POST request. |
| Scenario | Response | Credits |
|---|---|---|
| Scrape successful | JSON data array returned | Consumed normally |
| Result not ready yet | {"status": "pending"} — retry after a few seconds | Not consumed yet |
| Scrape failed (blocked, timeout…) | Error message returned | Refunded |
| Invalid responseId | 404 — response not found | Not consumed |
| Invalid credentials | 401 Unauthorized | Not consumed |
const username = "yourUsername";
const apiKey = "yourApiKey";
const auth = "Basic " + Buffer.from(`${username}:${apiKey}`).toString("base64");
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
async function scrape() {
const startResponse = await fetch("http://api.scraping-bot.io/scrape/data-scraper", {
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
Authorization: auth,
},
body: JSON.stringify({
scraper: "linkedinCompanyProfile",
url: "https://linkedin.com/company/google",
}),
});
const { responseId } = await startResponse.json();
console.log("responseId received: ", responseId);
let finalData;
do {
// checking for response data every 5s or more, there is no need to check more often as scraping data from
// social media is quite longer than normal scraping, and we limit how often you can do those checks
await sleep(5000);
const responseUrl = `http://api.scraping-bot.io/scrape/data-scraper-response?scraper=linkedinCompanyProfile&responseId=${responseId}`;
const pollResponse = await fetch(responseUrl, {
method: "GET",
headers: {
Accept: "application/json",
Authorization: auth,
},
});
finalData = await pollResponse.json();
console.log("data received: ", finalData);
} while (finalData == null || finalData.status === "pending");
return finalData;
}
scrape().then((result) => console.log(result));Here is an example of result you'd receive when using linkedinCompanyProfile scraper as above :
[
{
"url": "https://www.linkedin.com/organization-guest/company/google?_l=en",
"name": "Google",
"founded": "",
"sphere": "Software Development",
"followers": 28481071,
"logo": "https://media.licdn.com/dms/image/C4D0BAQHiNSL4Or29cg/company-logo_200_200/0/1519856215226?e=2147483647&v=beta&t=kJv1gX0_sqLG1g7LKLD5uh_6uEFpWGUTuzpuvVJVdEw",
"image": "https://media.licdn.com/dms/image/D4E3DAQFqgeEvzgMxSA/image-scale_191_1128/0/1668202316205?e=1682600400&v=beta&t=AfvOHaX45iTMSGI46pibtEFQsTzWkykeV1yTnqnDtBg",
"employeesAmountInLinkedin": "324577",
"about": "A problem isn't truly solved until it's solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.
Check out our career opportunities at careers.google.com. ",
"website": "https://goo.gle/3m1IN7m",
"locations": [
"1600 Amphitheatre Parkway, Mountain View, CA 94043, US",
"111 8th Ave, New York, NY 10011, US",
"Claude Debussylaan 34, Amsterdam, North Holland 1082 MD, NL",
"Avenida Brigadeiro Faria Lima, 3477, Sao Paulo, SP 04538-133, BR",
"51 Breithaupt St, Kitchener, ON N2H 5G5, CA",
"Barrow Street, Dublin, County Dublin, IE",
"Old Madras Road, Bengaluru, Karnataka 560016, IN",
"2590 Pearl St, Boulder, CO 80302, US",
"601 N 34th St, Seattle, WA 98103, US",
"48 Pirrama Rd, Sydney, NSW 2009, AU",
"19510 Jamboree Rd, Irvine, CA 92612, US",
"320 N Morgan St, Chicago, IL 60607, US",
"3 Bandra Kurla Complex Road, Mumbai, Maharashtra 400051, IN",
"5th Ave, Taguig City, National Capital Region, PH",
"3 Pasir Panjang Rd, Singapore, Singapore 118484, SG",
"13, Hyderabad, TS 500084, IN",
"90 Collins St, Melbourne, VIC 3000, AU",
"901 Cherry Ave, San Bruno, CA 94066, US",
"Plaza Pablo Ruiz Picasso, Madrid, Community of Madrid 28046, ES",
"25 Massachusetts Ave NW, Washington, DC 20001, US",
"15, Gurugram, HR 122001, IN",
"Carrera 11A 94-45, Bogota, Bogota, D.C. 110221, CO",
"2 Matheson St, Wan Chai, Hong Kong, HK",
"1875 Explorer St, Reston, VA 20190, US",
"111 Richmond St W, Toronto, ON M5H 2G4, CA",
"345 Spear St, San Francisco, CA 94105, US",
"355 Main St, Cambridge, MA 02142, US",
"Via Federico Confalonieri, 4, Milan, Lomb. 20124, IT",
"St Giles High Street, London, England WC2H 8AG, GB",
"9606 N Mopac Expy, Austin, TX 78759, US",
"340 Main St, Los Angeles, CA 90291, US",
"Plaza Pablo Ruiz Picasso, Madrid, Community of Madrid 28020, ES",
"2300 Traverwood Dr, Ann Arbor, MI 48105, US",
"Avenida Costanera Sur, Las Condes, Santiago Metropolitan 7550000, CL",
"10 10th St NE, Atlanta, GA 30309, US",
"ulica Emilii Plater 53, Warsaw, MA 00-125, PL",
"3 Swamy Vivekananda Road, Bengaluru, Karnataka 560016, IN",
"777 6th St S, Kirkland, WA 98033, US",
"Erika-Mann-Strasse 33, Munich, BY 80636, DE",
"Montes Urales, Miguel Hidalgo, CDMX 11000, MX",
"Avenida Alicia Moreau de Justo 350, Buenos Aires City, Buenos Aires Autonomous City 1107, AR",
"8 Rue de Londres, Paris, IdF 75009, FR",
"Yigal Allon 98, Tel Aviv-Yafo, Tel Aviv 67891, IL",
"Unter den Linden 14, Berlin, BE 10117, DE",
"ABC-Strasse 19, Hamburg, HH 20354, DE",
"6175 Main St, Frisco, TX 75034, US",
"Brandschenkestrasse 110, Zurich, ZH 8002, CH",
"Kungsbron 2, Stockholm, Stockholm County 111 22, SE"
],
"employees": [
{
"img": "https://media.licdn.com/dms/image/C4E03AQG2Lq9P131RPw/profile-displayphoto-shrink_100_100/0/1516155460837?e=1687392000&v=beta&t=vED-obov8dyeJ7jmmLg_AqxiWfDAIQmEOeIYyyW-qYA",
"title": "Linus Upson",
"subtitle": "Mosquitoes & Operating Systems"
},
{
"img": "https://media.licdn.com/dms/image/C4E03AQHjFT5OOou_gQ/profile-displayphoto-shrink_100_100/0/1516155468862?e=1687392000&v=beta&t=ZMEsf8Xn-o32vHx7yMuk6GRC2EocR5e7aunBU7hjcAU",
"title": "Phillip Pearson",
"subtitle": ""
},
{
"img": "https://media.licdn.com/dms/image/C4E03AQFUBgdsxpc7TQ/profile-displayphoto-shrink_100_100/0/1516155516879?e=1687392000&v=beta&t=l2NPXRIKseh29J2A1-hl-yHaPm5fJb4uAs-_-8Wr04Q",
"title": "Lenny Turetsky",
"subtitle": "great with computers, good with people"
},
{
"img": "https://media.licdn.com/dms/image/C4E03AQFo5FQ_MIgxtw/profile-displayphoto-shrink_100_100/0/1525962062028?e=1687392000&v=beta&t=32Wdza2phOCGxyXFSKM48lpmIaJJ9y5XzKPDZ_mtabM",
"title": "David Weinberger",
"subtitle": ""
}
],
"updates": [
{
"time": "5d",
"text": "Happy #WorldQuantumDay! Go behind the scenes with Research Scientist, Dripto Debroy for a tour of the Google Quantum Campus 👀",
"likes_count": 815,
"comments_count": 23
},
{
"time": "1w",
"text": "Get an inside look at how Googlers Laura D'Aquila & KR Liu built and use Google captions in their everyday lives. Over 466 million people are deaf or hard of hearing and this number is expected to grow to 700 million by the year 2050. Learn more about #TechnologysGoldenAge Series, produced by BBC StoryWorks → https://lnkd.in/g_jsDX9w #Accessibility",
"likes_count": 1106,
"comments_count": 50
},
{
"time": "1w",
"text": "It wouldn’t be #NationalPetDay without a few Dooglers stopping by the office to say hi! #LifeAtGoogle",
"likes_count": 27503,
"comments_count": 391
},
{
"time": "1w",
"text": "Scholarship season is almost here! Our partner scholarships are open and applications for Google-sponsored scholarships open April 18th, and we’re excited to provide opportunities for students interested in computer science degrees, students with disabilities, student Veterans, and more! Explore Build Your Future to check for eligibility and future opportunities in your country → https://goo.gle/3UlySfR",
"likes_count": 4720,
"comments_count": 171
},
{
"time": "1w",
"text": "🌟“Being a GDSC Lead has brought me tremendous opportunities.” - Rose Niousha, founder of Google #DeveloperStudentClubs Waseda University, and #WTMAmbassador. Learn how you can apply to become a GDSC Lead too!",
"likes_count": 1319,
"comments_count": 91
},
{
"time": "",
"text": "",
"likes_count": 0,
"comments_count": 0
},
{
"time": "2w",
"text": "Mike Darling, an audience development editor, loves a challenge and recently put himself and the Google Pixel Watch to the test by running the Tokyo Marathon! Mike concluded a decade-long goal to run all six Abbot World Marathon Majors. During the height of his training, he brought the Google Pixel Watch along to track 250,000 steps, and in the process, learned a bit about the importance of rest. Learn more about Mike and the Google Pixel Watch #LifeAtGoogle → https://goo.gle/3lWrXwV",
"likes_count": 6711,
"comments_count": 194
},
{
"time": "",
"text": "",
"likes_count": 0,
"comments_count": 0
},
{
"time": "4w",
"text": "Today we're starting to open up access to Bard, our early experiment that lets you collaborate with generative AI. You can use Bard to boost your productivity, accelerate your ideas and fuel your curiosity. We're beginning with the U.S. + U.K. and expanding over time to more countries and languages. Learn more and sign up. https://goo.gle/3naF4e3",
"likes_count": 16794,
"comments_count": 453
},
{
"time": "1mo",
"text": "We’re bringing the power of generative AI to more people, developers and businesses, helping you create and collaborate in Google Workspace, build with our AI models on our open cloud platform Google Cloud, and more. Read the Keyword post from Thomas Kurian, CEO of Google Cloud: https://goo.gle/4087LXk",
"likes_count": 3945,
"comments_count": 155
}
],
"show_more": [],
"affiliated": [
{
"title": "YouTube",
"subtitle": "Software Development",
"location": "San Bruno, CA",
"Links": "https://www.linkedin.com/company/youtube?trk=affiliated-pages"
},
{
"title": "Google Cloud",
"subtitle": "Software Development",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-cloud/?trk=affiliated-pages"
},
{
"title": "Think with Google",
"subtitle": "Advertising Services",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/think-with-google/?trk=affiliated-pages"
},
{
"title": "Google Ads",
"subtitle": "Advertising Services",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-ads-/?trk=affiliated-pages"
},
{
"title": "Google Developers",
"subtitle": "Software Development",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/googledevelopers/?trk=affiliated-pages"
},
{
"title": "Google Analytics",
"subtitle": "Software Development",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-analytics/?trk=affiliated-pages"
},
{
"title": "Google Workspace",
"subtitle": "IT Services and IT Consulting",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/googleworkspace/?trk=affiliated-pages"
},
{
"title": "Google Marketing Platform",
"subtitle": "Advertising Services",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/googlemarketingplatform/?trk=affiliated-pages"
},
{
"title": "Google Developer Groups (GDG)",
"subtitle": "Software Development",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/google-developer-groups/?trk=affiliated-pages"
},
{
"title": "Google Ad Manager",
"subtitle": "Advertising Services",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-ad-manager/?trk=affiliated-pages"
},
{
"title": "Google for Startups",
"subtitle": "Software Development",
"location": "San Francisco, California",
"Links": "https://www.linkedin.com/showcase/google-for-startups/?trk=affiliated-pages"
},
{
"title": "X, the moonshot factory",
"subtitle": "Research Services",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/company/x?trk=affiliated-pages"
},
{
"title": "Grow with Google",
"subtitle": "E-Learning Providers",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/grow-with-google/?trk=affiliated-pages"
},
{
"title": "Google Small Business",
"subtitle": "Technology, Information and Internet",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-small-business/?trk=affiliated-pages"
},
{
"title": "Google Cloud Partners",
"subtitle": "Technology, Information and Internet",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-cloud-partners/?trk=affiliated-pages"
},
{
"title": "Android Developers",
"subtitle": "Software Development",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/androiddev/?trk=affiliated-pages"
},
{
"title": "re:Work with Google",
"subtitle": "Human Resources Services",
"location": null,
"Links": "https://www.linkedin.com/showcase/rework-with-google/?trk=affiliated-pages"
},
{
"title": "Chrome Enterprise",
"subtitle": "IT Services and IT Consulting",
"location": null,
"Links": "https://www.linkedin.com/showcase/chrome-enterprise/?trk=affiliated-pages"
},
{
"title": "Google Partners",
"subtitle": "Advertising Services",
"location": null,
"Links": "https://www.linkedin.com/showcase/google-partners/?trk=affiliated-pages"
},
{
"title": "Google Play business community",
"subtitle": "IT Services and IT Consulting",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/googleplaybiz/?trk=affiliated-pages"
},
{
"title": "Google News Initiative",
"subtitle": "Online Audio and Video Media",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/google-news-initiative/?trk=affiliated-pages"
},
{
"title": "Google Health",
"subtitle": "Software Development",
"location": null,
"Links": "https://www.linkedin.com/showcase/google-health/?trk=affiliated-pages"
},
{
"title": "Google AdMob",
"subtitle": "Advertising Services",
"location": null,
"Links": "https://www.linkedin.com/showcase/googleadmob/?trk=affiliated-pages"
},
{
"title": "Google Pay",
"subtitle": "Technology, Information and Internet",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-pay/?trk=affiliated-pages"
},
{
"title": "Android",
"subtitle": "Software Development",
"location": null,
"Links": "https://www.linkedin.com/showcase/android_by_google/?trk=affiliated-pages"
},
{
"title": "CapitalG",
"subtitle": "Venture Capital and Private Equity Principals",
"location": "San Francisco, CA",
"Links": "https://ca.linkedin.com/company/capitalg?trk=affiliated-pages"
},
{
"title": "Flutter Dev",
"subtitle": "Software Development",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/flutterdevofficial/?trk=affiliated-pages"
},
{
"title": "Google User Experience Research",
"subtitle": "Software Development",
"location": null,
"Links": "https://www.linkedin.com/showcase/google-user-research./?trk=affiliated-pages"
},
{
"title": "Android Enterprise",
"subtitle": "IT Services and IT Consulting",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/androidenterprise/?trk=affiliated-pages"
},
{
"title": "Firebase",
"subtitle": "Software Development",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/firebase/?trk=affiliated-pages"
},
{
"title": "Grow with Google Africa",
"subtitle": "Software Development",
"location": "Lagos, Lagos",
"Links": "https://ng.linkedin.com/showcase/gwgafrica/?trk=affiliated-pages"
},
{
"title": "Adometry (acquired by Google)",
"subtitle": "Advertising Services",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/company/adometry?trk=affiliated-pages"
},
{
"title": "TensorFlow",
"subtitle": "Software Development",
"location": null,
"Links": "https://www.linkedin.com/showcase/tensorflowdev/?trk=affiliated-pages"
},
{
"title": "Google Nest Pro",
"subtitle": "Software Development",
"location": "Mountain View, California",
"Links": "https://www.linkedin.com/showcase/google-nest/?trk=affiliated-pages"
},
{
"title": "Google Developers North America",
"subtitle": "Software Development",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/google-developers-north-america/?trk=affiliated-pages"
},
{
"title": "Google Chrome",
"subtitle": "Technology, Information and Internet",
"location": "Mountain View, CA",
"Links": "https://www.linkedin.com/showcase/google-chrome/?trk=affiliated-pages"
},
{
"title": "Rare with Google",
"subtitle": "Advertising Services",
"location": null,
"Links": "https://www.linkedin.com/showcase/rare-with-google/?trk=affiliated-pages"
},
{
"title": "Flutter",
"subtitle": null,
"location": null,
"Links": "https://www.linkedin.com/showcase/flutterdev-hold/?trk=affiliated-pages"
},
{
"title": "Firebase",
"subtitle": null,
"location": null,
"Links": "https://www.linkedin.com/showcase/firebase-hold/?trk=affiliated-pages"
}
],
"browse_jobs": [],
"company_id": "16140",
"timestamp": "2023-04-20T12:25:29.787Z",
"slogan": "",
"crunchbase_url": null,
"stock_info": null,
"funding": null,
"investors": null,
"similarPages": [
{
"name": "Amazon",
"pageUrl": "https://www.linkedin.com/company/amazon?trk=similar-pages",
"activity": "Software Development",
"location": "Seattle, WA"
},
{
"name": "Microsoft",
"pageUrl": "https://www.linkedin.com/company/microsoft?trk=similar-pages",
"activity": "Software Development",
"location": "Redmond, Washington"
},
{
"name": "Apple",
"pageUrl": "https://www.linkedin.com/company/apple?trk=similar-pages",
"activity": "Computers and Electronics Manufacturing",
"location": "Cupertino, California"
},
{
"name": "Meta",
"pageUrl": "https://www.linkedin.com/company/meta?trk=similar-pages",
"activity": "Software Development",
"location": "Menlo Park, CA"
},
{
"name": "Netflix",
"pageUrl": "https://www.linkedin.com/company/netflix?trk=similar-pages",
"activity": "Entertainment Providers",
"location": "Los Gatos, CA"
},
{
"name": "IBM",
"pageUrl": "https://www.linkedin.com/company/ibm?trk=similar-pages",
"activity": "IT Services and IT Consulting",
"location": "Armonk, New York, NY"
},
{
"name": "LinkedIn",
"pageUrl": "https://www.linkedin.com/company/linkedin?trk=similar-pages",
"activity": "Software Development",
"location": "Sunnyvale, CA"
},
{
"name": "Deloitte",
"pageUrl": "https://www.linkedin.com/company/deloitte?trk=similar-pages",
"activity": "Business Consulting and Services",
"location": ""
},
{
"name": "Tata Consultancy Services",
"pageUrl": "https://in.linkedin.com/company/tata-consultancy-services?trk=similar-pages",
"activity": "IT Services and IT Consulting",
"location": "Mumbai, Maharashtra"
},
{
"name": "Accenture",
"pageUrl": "https://ie.linkedin.com/company/accenture?trk=similar-pages",
"activity": "IT Services and IT Consulting",
"location": ""
}
],
"Website": "https://goo.gle/3m1IN7m",
"Industries": "Software Development",
"Company size": "10,001+ employees",
"Headquarters": "Mountain View, CA",
"Type": "Public Company",
"Specialties": "search, ads, mobile, android, online video, apps, machine learning, virtual reality, cloud, hardware, artificial intelligence, youtube, and software"
}
]