# Company Enrichment

> LeadMagic company search, filter search, funding, technographics, lookalikes, competitors. Use when enriching a domain or company name, building company lists with typed filters, finding lookalike companies from a seed, researching an account's funding or tech stack.

- Skill: `leadmagic/company-enrichment` (Agent Skill)
- Install (CLI): `npx skillmds@latest add leadmagic/company-enrichment`
- Raw SKILL.md: https://api.skillmd.com/api/skills/leadmagic/company-enrichment/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: LeadMagic (https://skillmd.com/u/leadmagic)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/leadmagic/company-enrichment

---


# LeadMagic — Company enrichment & discovery

## Endpoints

| Goal | Endpoint | Credits | Rate/min |
|---|---|---|---|
| Enrich one company | `POST /v1/companies/company-search` | 1 (free on miss) | 300 |
| Company **list** by typed filters | `POST /v3/companies/search` — full depth in the `company-search` skill | 1 per row | 300 |
| Lookalikes from a seed | `POST /v3/companies/lookalike` | 5 (metered on all plans) | 300 |
| Competitors | `POST /v1/companies/competitors-search` | 5 | 300 |
| Funding rounds | `POST /v1/companies/company-funding` | 4 (free on miss) | 300 |
| Tech stack | `POST /v1/companies/technographics` | 1 | 1,500 |
| Employees at company | `POST /v1/people/employee-finder` | 1 | 300 |

Plan note: canonical `/v3/companies/search` requests are credit-free on Professional (5 req/s) / Ultimate (10 req/s); other plans bill per row. Lookalikes remain metered on every plan; app-only preview is unavailable to API keys.

## Field contracts

- **company-search**: any one of `company_domain` (preferred — e.g. `stripe.com`), `company_name`, or `profile_url` (company page URL/slug). CRM aliases (`website`, `companyName`, `organization`, …) normalize server-side; URLs are stripped to bare domains.
- **v3 filter search**: typed `company_filters` (firmographics, geo, funding, technographics) with cursor pagination — filter vocabulary, One-vs-Many lookup, and cursors are documented in the dedicated `company-search` skill.
- **lookalike**: seed `company_domain` or free-text description; returns full company rows.
- Pass real employer domains — never person names or UI labels as the company.

```bash
curl -sS -X POST "https://api.leadmagic.io/v1/companies/company-search" \
  -H "X-API-Key: $LEADMAGIC_API_KEY" -H "Content-Type: application/json" \
  -d '{"company_domain":"acme.com"}'

curl -sS -X POST "https://api.leadmagic.io/v3/companies/lookalike" \
  -H "X-API-Key: $LEADMAGIC_API_KEY" -H "Content-Type: application/json" \
  -d '{"company_domain":"bestcustomer.com"}'
```

## Account brief composite (~8–12 credits)

`company-search` (1) → `company-funding` (4) → `technographics` (1) → public jobs research (`jobs-hiring-intent` skill; plan-dependent cost) → optional `competitors-search` (5). MCP shortcut: `account_intel` runs the composite in one call. Full recipe: `outbound-recipes` recipe 2.

## Related

- People at a company by filters → `people-search`; buyers → `outbound-recipes` recipe 7
- Hiring/intent signals for the account → `jobs-hiring-intent`
- What they're advertising → `ads-intelligence`
- MCP: `enrich_company`, `research_account`, `find_company_funding`, `get_company_technographics`, `find_lookalike_companies`, `list_company_competitors`

