# Domain Company Enricher — Firmographics API

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

Given a company domain, name, or work email, 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
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 6
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-company-enricher-firmographics-api-01efd206
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-fqHgCcZ8aoPuVF9l6nrp

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-api-01efd206
```

Example prompt: Can you look up firmographic details for stripe.com — I need the 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 structured firmographic data from a company domain, name, or work email in a single fast call — especially for lead enrichment pipelines, CRM cleanup, or prospect research workflows where you need industry, size, technology stack, and B2B classification together in one response.

## Known failure modes

- Unknown or very new domain returns low confidence score or empty fields
- Malformed domain input returns a validation error
- Domain resolves but has no associated company data — partial result with low confidence
- Rate limit or payment failure returns 402 or 429 error
- Personal domains or non-company domains may return incorrect or empty company info

## 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

A JSON object containing company name, industry, country, employee range, list of technologies, B2B/B2C flag, founded year, a short company description, and a confidence score (0–1) reflecting data reliability.

## Example request

```json
{
 "domain": "stripe.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "examples": [
    "stripe.com"
   ]
  }
 }
}
```

## 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-api-01efd206/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)
