# 411data.io Web Research Business Enrichment

> 411data.io Web Research Business Enrichment is a paid API for AI agents from 411data.io, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Given a business name plus optional city/state/domain, performs managed web research to surface public phones, key people with titles, addresses, and legal associates for outreach compliance.

## Facts

- Endpoint: POST https://411data.io/api/v1/enrich/websearch
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/411data-io-web-research-business-enrichment-3b63677c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QIiUzDyEwCvCpSJeUb8He

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 411data-io-web-research-business-enrichment-3b63677c -d '<json body>'
```

Example prompt: Can you look up public contact info for Apex Roofing Solutions in Austin, Texas — I need their phone numbers, key people with titles, address, and any attorneys or registered agents associated with them for outreach compliance?

## When to prefer this

Choose this endpoint when you need managed, web-researched enrichment for a business entity and require not just basic contact data but also key personnel with titles and legal associates (attorneys, registered agents) for compliance-aware outreach. It is preferable over directory-only lookups when the target company may not be in structured databases, and over person-search endpoints when the primary query entity is a business rather than an individual.

## Known failure modes

- No match found — business name too ambiguous or not indexed publicly (no charge on no-match)
- Partial match — some fields returned but others unavailable due to sparse web presence
- Rate limit or quota exceeded — API returns an error requiring retry
- Invalid input — missing required business name field returns a validation error
- Vendor upstream failure — web research provider unavailable causing a timeout or error response

## How this service works

Managed web-research enrichment: given a business name (+ optional city/state/domain), find public phones, people (name+title), addresses, and legal_associates (attorneys, registered agents, family counsel) for outreach compliance. $1.00 minimum on match; vendor COGS above $1 billed at 30% markup. Bill-on-match.

## Output

Returns a structured record for the matched business including: public phone numbers, named individuals with their titles, physical addresses, and legal associates such as attorneys, registered agents, and family counsel. Billed at $1.00 minimum on a successful match; vendor costs above $1 are passed through at 30% markup.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "maxLength": 120
  },
  "state": {
   "type": "string",
   "maxLength": 120
  },
  "domain": {
   "type": "string",
   "maxLength": 255
  },
  "prompt": {
   "type": "string",
   "maxLength": 8000,
   "description": "Optional free-form research instructions. More relevant city, state, domain, and prompt input improves executive-contact and phone results."
  },
  "business_name": {
   "type": "string",
   "maxLength": 200,
   "minLength": 2,
   "description": "Company name — map from a CRM JSON export (e.g. company, BusinessName)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "people": [
    {
     "name": "Jane Doe",
     "title": "President",
     "source": "https://example.com"
    }
   ],
   "phones": [
    {
     "label": "main",
     "number": "+18135550100"
    }
   ],
   "legal_associates": [
    {
     "name": "Jane Doe",
     "role": "registered_agent",
     "source": "https://sos.example.gov",
     "relationship": "Listed on state filing",
     "outreach_note": "Registered agent — prefer operational owner contact when available"
    }
   ]
  },
  "input": {
   "city": "Tampa",
   "state": "FL",
   "business_name": "Acme Corp"
  },
  "billed": true,
  "vendor": "llm_websearch",
  "matched": true,
  "endpoint": "enrich/websearch",
  "cache_hit": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/411data-io-web-research-business-enrichment-3b63677c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 411data.io](https://www.zero.xyz/host/411data.io/llms.txt)
