# Domain Company Enricher — Firmographics Lookup by Name

> Domain Company Enricher — Firmographics Lookup by Name is a paid API for AI agents from domain-enricher.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Given a company name, returns structured firmographic data including industry, country, employee range, technologies, B2B/B2C classification, and confidence score.

## Facts

- Endpoint: GET https://domain-enricher.hahavoid0.workers.dev/enrich/name
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-company-enricher-firmographics-lookup-by-name-ac35c351
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vGf5G9P4aFwgSXqY9rtgU

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability domain-company-enricher-firmographics-lookup-by-name-ac35c351
```

Example prompt: Can you look up firmographic data for 'Stripe' — I need their industry, country, employee range, whether they're B2B or B2C, and what technologies they use?

## When to prefer this

Use this endpoint when you need quick, structured firmographic enrichment for a known company name and want B2B/B2C classification, industry, employee range, and tech stack in a single call — especially in sales automation, lead scoring, or CRM cleanup pipelines where cost-per-lookup must stay low (fractions of a cent).

## Known failure modes

- Unknown or ambiguous company name returns low confidence score or empty result
- Private or very small companies may return sparse data with low confidence
- Misspelled company name may return wrong company match
- Rate limiting or payment failure returns 402 or error response
- Domain not resolvable to a known company returns null fields

## How this service works

Given a company domain, name, or work email, returns structured JSON with company name, industry, country, employee range, technologies, B2B/B2C classification, and confidence score. Built for lead enrichment, CRM cleanup, prospect research, and sales automation agents.

## Output

Returns a JSON object with company_name, industry, country, employee_range, technologies (array), is_b2b (boolean), founded_year, a short description, and a confidence score (0–1) indicating data reliability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "examples": [
    "Stripe"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "is_b2b": true,
  "country": "US",
  "industry": "Financial technology",
  "confidence": 0.92,
  "description": "Payments infrastructure for internet businesses.",
  "company_name": "Stripe",
  "founded_year": 2010,
  "technologies": [
   "Payments",
   "API",
   "Fraud prevention"
  ],
  "employee_range": "501-2000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-company-enricher-firmographics-lookup-by-name-ac35c351/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from domain-enricher.hahavoid0.workers.dev](https://www.zero.xyz/host/domain-enricher.hahavoid0.workers.dev/llms.txt)
