
by Faro
Real-time B2B data enrichment: enrich companies by domain, find contacts at target accounts, and verify emails and phone numbers.
Agent-friendly company enrichment. On the first call provide enrichment params (domain, domains, company_name, country_code, etc.); the server starts the job and polls internally for up to ~25s. If the job is still running, the response will be {status:"pending", continuation_token, attempt, elapsed_seconds}. When you see status "pending" you MUST immediately call run_company_enrichment again with only continuation_token set — do not ask the user, do not call any other tool first. Typical jobs f
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://api.askfaro.com/invoke/datamerge/run_company_enrichment" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {}
}'faro invoke datamerge/run_company_enrichment --params '{}'Install pip install askfaro-cli, then faro auth login.
Agent-friendly contact enrichment. On the first call provide contacts and enrich_fields; the server starts the job and polls internally for up to ~25s. If still running, returns {status:"pending", continuation_token, attempt, elapsed_seconds} — you MUST immediately call run_contact_enrich again with only continuation_token set. Do not ask the user. Typical jobs finish within 5 attempts. On completion the response contains record_ids and full contact records.
Up to 10 contacts: each either {linkedin_url, domain} or {firstname, lastname, domain}. Providing domain dramatically improves email accuracy for people with multiple affiliations.
Fields to enrich, e.g. [contact.emails, contact.phones].
When true, allow enrichment of contacts without a domain — DataMerge picks whichever current employer it considers primary. Default false: if any contact lacks domain the call returns status=domain_required.
Token from a prior pending response — when set, all other params are ignored.
curl -X POST "https://api.askfaro.com/invoke/datamerge/run_contact_enrich" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {}
}'faro invoke datamerge/run_contact_enrich --params '{}'Install pip install askfaro-cli, then faro auth login.
POST /v1/contact/search/unenriched/sync. Synchronous unenriched contact search — returns contacts inline (no polling). Requires the `contact_search_unenriched` beta flag. Limits: 10 domains and max_results_per_company ≤ 10. Response includes credits_consumed_total computed as 0.5 × len(contacts).
One company domain to search (e.g. stripe.com).
Max contacts to return (1–10).
curl -X POST "https://api.askfaro.com/invoke/datamerge/run_contact_search_unenriched" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {
"domains": []
}
}'faro invoke datamerge/run_contact_search_unenriched --params '{"domains":[]}'Install pip install askfaro-cli, then faro auth login.
Agent-friendly contact search. On the first call provide domains and enrich_fields; the server starts the job and polls internally for up to ~25s. If still running, returns {status:"pending", continuation_token, attempt, elapsed_seconds} — you MUST immediately call run_contact_search again with only continuation_token set. Do not ask the user. On completion the response contains record_ids, full contact records, and credits_consumed_total.
One company domain to search (e.g. stripe.com). Required on the first call; omit when using continuation_token.
At least one of contact.emails (~1 DM credit each) or contact.phones (~4 DM credits each). Required on first call; omit on continuation.
Token from a prior pending response — when set, all other params are ignored.
Max contacts to return (1–10).
curl -X POST "https://api.askfaro.com/invoke/datamerge/run_contact_search" \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"arguments": {}
}'faro invoke datamerge/run_contact_search --params '{}'Install pip install askfaro-cli, then faro auth login.
DataMerge provides real-time B2B data enrichment — enrich companies by domain, find contacts at target accounts, and verify emails and phone numbers.
Enrich up to 10 companies by domain in a single call. Returns firmographic data: industry, headcount, revenue range, founding year, tech stack, address, and more. Long-running jobs return a continuation_token — call again with only the token to resume.
Enrich up to 10 known contacts with verified emails and phone numbers. Provide LinkedIn URL or firstname+lastname, always alongside a company domain for best accuracy. If you don't know the domain, set return_any_domain=true to let DataMerge pick the primary employer. Specify enrich_fields to control which data is returned (and what you're charged for).
Find contacts at a single target company without running email or phone enrichment. Returns names, job titles, and LinkedIn URLs. Up to 10 contacts per call. Use this to build a shortlist before deciding which contacts to fully enrich.
Find contacts at a single target company AND enrich them with verified emails and phone numbers in one call. Up to 10 contacts per call. More expensive than contact_search — use when you want a one-shot list ready to outreach.