Company Research avatar

Company Research

Pricing

from $9.99 / 1,000 results

Go to Apify Store
Company Research

Company Research

Enter a company name and optional website to gather public information into a structured profile. The Actor analyzes the site, recent Google News, and optional job boards to find technologies, contact details, social profiles, industry, locations, products/services, news, and jobs.

Pricing

from $9.99 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Give it a company name (and optionally a website) and this Actor gathers public information from several supported sources into one structured profile. It never invents facts: a field is filled only when a source actually returned it, and everything that could not be found is listed explicitly under notFound.

What does this Actor do?

It combines up to three source families into a single profile record:

  1. Website (if a URL is given) — analyses the site for technologies, contact info (emails/phones), social profiles, and pulls industry and locations from any embedded JSON-LD Organization data. Product/service hints are read verbatim from page headings.
  2. News (optional, on by default) — searches Google News for recent public coverage of the company.
  3. Jobs (optional, off by default) — best-effort lookup of Greenhouse and Lever job boards using a slug guessed from the company name.

Each source is wrapped in its own error handling — one source failing never aborts the run; it just shows up in notFound.

Why use it?

  • Build a quick, source-cited company brief for sales, partnerships or diligence — every populated field traces back to a URL in sourceUrls.
  • Because missing data is tracked explicitly, you always know the difference between "we checked and found nothing" and "we never looked".

Input

FieldTypeDescription
companyNamestring (required)The company to research.
websitestringCompany website URL (optional but recommended).
countrystringTwo-letter country code to bias the news search (optional).
includeNewsbooleanSearch Google News (default true).
includeJobsbooleanTry Greenhouse + Lever job boards (default false).
proxyConfigurationobjectProxy settings (all sources are keyless).

Input example

{
"companyName": "Acme Corp",
"website": "https://acmecorp.com",
"includeNews": true,
"includeJobs": true
}

Output

One profile record per run:

{
"companyName": "Acme Corp",
"website": "https://acmecorp.com",
"industry": "Software",
"technologies": ["WordPress", "jQuery"],
"contactInfo": { "emails": ["hello@acmecorp.com"], "phones": ["4155550142"] },
"socialProfiles": { "facebook": "https://www.facebook.com/acmecorp" },
"productsServices": ["Our Products", "Consulting Services"],
"locations": [
{ "street": "100 Market St", "city": "San Francisco", "region": "CA",
"postalCode": "94105", "country": "US",
"formatted": "100 Market St, San Francisco, CA, 94105, US" }
],
"news": [
{ "title": "Acme Corp raises Series B", "url": "https://…", "date": "…" }
],
"jobs": [
{ "title": "Backend Engineer", "company": "acmecorp", "location": "Remote",
"url": "https://boards.greenhouse.io/acmecorp/jobs/1", "source": "greenhouse:acmecorp" }
],
"sourceUrls": ["https://acmecorp.com", "https://news.google.com/rss/search?q=…", "…"],
"notFound": []
}

sourceUrls lists every endpoint that contributed data; notFound lists every field that was looked for but not found.

You can download the dataset in JSON, CSV, Excel or HTML.