Install
openclaw skills install @jaencarrodine/company-enrichmentCompany firmographics, tech stack, headcount, and intelligence from a domain — agent-ready account research.
openclaw skills install @jaencarrodine/company-enrichmentResolve a domain or company name into structured account intelligence: firmographics, headcount, funding, competitors, technographics, and the emails known on the domain. Discover and search endpoints build target lists from plain criteria; bulk enrich processes whole account lists in one call. Everything is orchestrated server-side across multiple providers, so an agent gets one consistent JSON shape per company regardless of where the data came from. Built for account research before outreach, ICP filtering over raw lists, and market-mapping jobs.
If this client speaks MCP, connect the scoped server instead of using this skill's curl calls — native tools, structured parameters, OAuth sign-in, and a tool surface that can grow on demand:
https://mcp.superagnt.com/mcp/company-enrichment
That URL publishes full OAuth discovery: an MCP-capable client needs the URL
and nothing else (approve once in the browser). On clients that hold a bearer
instead, add it as an Authorization: Bearer header. Per-client setup lines:
https://mcp.superagnt.com/agent-setup/prompt.md
Two clients refresh tools live when the server grows (agnt_tools_enable):
Hermes and OpenClaw. Most others hold the tool list until reconnect — on a
cloud connector (claude.ai, ChatGPT) refresh the connector in its settings,
on a direct config start a new session.
This skill document stays fully usable on curl-only environments — everything below works with just the API key.
Get an API key from the dashboard and export it as
SUPERAGNT_API_KEY. Every request sends it as a Bearer token:
Authorization: Bearer $SUPERAGNT_API_KEY
If the variable is not set, ask the user for their key or point them at https://superagnt.com/r/ch-company-enrichment-key.
One call proves the key, the credit balance, and this source end to end:
curl -s https://api.superagnt.com/v1/credits \
-H 'Authorization: Bearer $SUPERAGNT_API_KEY'
A JSON result means you are live. A 401 means the key is wrong or missing; a 402 means the workspace is out of credits — the dashboard shows both.
https://api.superagnt.com/v1/data/agnt
| Method | Path | Summary |
|---|---|---|
POST | /companies/enrich | Enrich a company |
POST | /companies/bulk-enrich | Bulk enrich companies |
POST | /companies/search | Search companies |
POST | /companies/discover | Discover companies |
POST | /companies/intelligence | Company intelligence (funding / competitors / technographics) |
POST | /companies/domain-emails | List a domain's emails |
The following JSON defines every operation with its parameters. Each tool maps to an API endpoint under the base URL.
[
{
"name": "superagnt_agnt_companies_enrich",
"description": "Enrich a company",
"method": "POST",
"path": "/companies/enrich",
"parameters": {
"$ref": "#/components/schemas/CompaniesEnrichRequest"
}
},
{
"name": "superagnt_agnt_companies_bulk_enrich",
"description": "Bulk enrich companies",
"method": "POST",
"path": "/companies/bulk-enrich",
"parameters": {
"$ref": "#/components/schemas/CompaniesBulkEnrichRequest"
}
},
{
"name": "superagnt_agnt_companies_search",
"description": "Search companies",
"method": "POST",
"path": "/companies/search",
"parameters": {
"$ref": "#/components/schemas/CompaniesSearchRequest"
}
},
{
"name": "superagnt_agnt_companies_discover",
"description": "Discover companies",
"method": "POST",
"path": "/companies/discover",
"parameters": {
"$ref": "#/components/schemas/CompaniesDiscoverRequest"
}
},
{
"name": "superagnt_agnt_companies_intelligence",
"description": "Company intelligence (funding / competitors / technographics)",
"method": "POST",
"path": "/companies/intelligence",
"parameters": {
"$ref": "#/components/schemas/CompaniesIntelligenceRequest"
}
},
{
"name": "superagnt_agnt_companies_domain_emails",
"description": "List a domain's emails",
"method": "POST",
"path": "/companies/domain-emails",
"parameters": {
"$ref": "#/components/schemas/CompaniesDomainEmailsRequest"
}
}
]
curl -X POST 'https://api.superagnt.com/v1/data/agnt/companies/enrich' \
-H 'Authorization: Bearer $SUPERAGNT_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"...": "see tool schemas below"}'
The same key and credit balance cover every superagnt data source and, on the
MCP server, the full platform (workspace database, files, webhooks, queues,
first-party people/company enrichment). Over MCP, discover what is available
with agnt_tools_search and turn a family on with agnt_tools_enable — money
is never charged without a human confirming in the dashboard.
curl https://api.superagnt.com/v1/platforms