Your agent has no live view of a company; this returns firmographics plus sourced signals like hiring, tech, news, and funding by domain.
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.
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.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
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?"
}
}'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.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
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?"
}
}'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.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
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?"
}
}'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.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
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?"
}
}'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.
1-indexed page number.
Page size.
Company root domain, e.g. "pipedream.com".
Optional comma-separated event categories to filter, e.g. "acquires,raises_funding,launches_product,hires".
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"
}
}'askfaro describe company-data/get_company_news_events
Install pip install askfaro-cli, then askfaro auth login.
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.
Single company domain (e.g. stripe.com).
Up to 10 company domains for batch enrichment.
ISO 2-letter country code to improve matching.
Return the global ultimate parent company.
Token from a prior pending response — when set, all other params are ignored.
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"
}
}'askfaro describe company-data/run_company_enrichment
Install pip install askfaro-cli, then askfaro auth login.