Tools/company-data
Company Data

Company Data

Active

Your agent has no live view of a company; this returns firmographics plus sourced signals like hiring, tech, news, and funding by domain.

6 tools

A B2B company dataset for sales, recruiting, investment, and competitive-intelligence teams. Query any company by its root domain for firmographic enrichment (industry, size, revenue, legal entity, hierarchy) plus structured, source-cited signals: job openings, technology detections, news and financing events, and public code repositories.

Business & Companiescompany-intelligencesales-intelligencefirmographicsenrichmentfundinghiringtechnographicsnews

Tools (6)

Default

Retrieve currently open and historical job postings for a company, sourced directly from its career site. Useful as a hiring signal and to infer team focus, growth, and geographic expansion.

50 credits/call ($0.05) · on success

Example prompts

  • What jobs is this company currently hiring for?
  • Get open job postings for a company by domain
  • Is this company hiring engineers right now?

Parameters

pageintegeroptionaldefault: 1

1-indexed page number.

limitintegeroptionaldefault: 25

Page size.

domainstringrequired

Company root domain, e.g. "pipedream.com".

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What jobs is this company currently hiring for?"
  }
}'

CLI Usage

askfaro describe company-data/get_company_job_openings

Install pip install askfaro-cli, then askfaro auth login.

List technologies detected as in use by the company (analytics, CRM, languages, hosting, payment, ad tech, and more), each with a confidence score and first/last-seen timestamps.

50 credits/call ($0.05) · on success

Example prompts

  • What technologies does this company use?
  • Get the tech stack detected for a company by domain
  • Does this company use Shopify or Salesforce?

Parameters

pageintegeroptionaldefault: 1

1-indexed page number.

limitintegeroptionaldefault: 25

Page size.

domainstringrequired

Company root domain, e.g. "pipedream.com".

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What technologies does this company use?"
  }
}'

CLI Usage

askfaro describe company-data/get_company_technology_detections

Install pip install askfaro-cli, then askfaro auth login.

Financing rounds and funding history for a company, covering round type (seed, Series A/B/…, debt, IPO), amount, effective date, and source URLs.

50 credits/call ($0.05) · on success

Example prompts

  • How much funding has this company raised?
  • Get the funding rounds and amounts for a company by domain
  • Has this company raised a round recently?

Parameters

pageintegeroptionaldefault: 1

1-indexed page number.

limitintegeroptionaldefault: 25

Page size.

domainstringrequired

Company root domain, e.g. "pipedream.com".

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "How much funding has this company raised?"
  }
}'

CLI Usage

askfaro describe company-data/get_company_financing_events

Install pip install askfaro-cli, then askfaro auth login.

Public GitHub repositories associated with the company, with URL, description, first-seen timestamp, and engagement timeseries (stars, forks, watchers). Useful for gauging open-source footprint and developer activity.

50 credits/call ($0.05) · on success

Example prompts

  • What public GitHub repos does this company maintain?
  • Get the open-source repositories and activity for a company by domain

Parameters

pageintegeroptionaldefault: 1

1-indexed page number.

limitintegeroptionaldefault: 25

Page size.

domainstringrequired

Company root domain, e.g. "pipedream.com".

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What public GitHub repos does this company maintain?"
  }
}'

CLI Usage

askfaro describe company-data/get_company_github_repositories

Install pip install askfaro-cli, then askfaro auth login.

Categorized press, blog, and news mentions for a company, covering acquisitions, leadership changes, partnerships, product launches, awards, and more. Each event includes summary, source URL, found_at, and confidence.

50 credits/call ($0.05) · on success

Example prompts

  • Get recent news and announcements for a company by domain
  • Has this company made any acquisitions or launched products recently?
  • Find leadership changes and partnerships for a company

Parameters

pageintegeroptionaldefault: 1

1-indexed page number.

limitintegeroptionaldefault: 25

Page size.

domainstringrequired

Company root domain, e.g. "pipedream.com".

categoriesstringoptional

Optional comma-separated event categories to filter, e.g. "acquires,raises_funding,launches_product,hires".

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Get recent news and announcements for a company by domain"
  }
}'

CLI Usage

askfaro describe company-data/get_company_news_events

Install pip install askfaro-cli, then askfaro auth login.

Company Enrichment

Enrich a company by domain (or company name plus country code) and get back a full firmographic record covering legal entity, corporate hierarchy, industry, size, location, and key identifiers. Runs as a quick job; if the response comes back with a continuation_token, call again with only that token (do not ask the user) until the completed record returns.

Usage-based · 80 credits per company enriched

Example prompts

  • Enrich a company by domain and give me their industry, headcount, and revenue
  • Get firmographic data for a company website
  • Look up the company behind this domain

Parameters

domainstringoptional

Single company domain (e.g. stripe.com).

domainsarrayoptional

Up to 10 company domains for batch enrichment.

company_namestringoptional
country_codestringoptional

ISO 2-letter country code to improve matching.

global_ultimatebooleanoptional

Return the global ultimate parent company.

continuation_tokenstringoptional

Token from a prior pending response — when set, all other params are ignored.

API Usage

curl -X POST "https://skill.askfaro.com/skills/company-data/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Enrich a company by domain and give me their industry, headcount, and revenue"
  }
}'

CLI Usage

askfaro describe company-data/run_company_enrichment

Install pip install askfaro-cli, then askfaro auth login.