# AgentBit Company Enrichment

> AgentBit Company Enrichment is a paid API for AI agents from agentbit.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Enriches a company domain with live signals: canonical name, website description, tech stack, social profiles, and mail infrastructure (MX) read directly from the site and DNS.

## Facts

- Endpoint: POST https://agentbit.app/v1/company/enrich
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-company-enrichment-33be7511
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GiISoi2CaR-jLWkejxtM3

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 agentbit-company-enrichment-33be7511 -d '<json body>'
```

Example prompt: Can you enrich the company profile for stripe.com — I need their canonical name, website description, what CMS or analytics tools they use, their social profiles, and mail server info?

## When to prefer this

Choose this endpoint when you need fresh, live company data read directly from the website and DNS rather than a potentially stale third-party database. It is ideal for sales prospecting, lead qualification, and technology stack audits where recency matters. Prefer it over static company databases when you need MX/mail infrastructure details alongside web signals in a single call. It complements pre-transaction risk screening (a sibling endpoint) for a fuller due-diligence picture.

## Known failure modes

- Domain does not resolve — returns DNS failure or empty result
- Company website blocks crawlers — partial or empty technology detection
- No social profiles detected — fields returned as null or empty array
- Invalid domain format — returns validation error
- MX lookup fails due to DNS propagation issues — mail infrastructure fields empty
- Website returns non-HTML content — description and tech detection unavailable

## How this service works

Company enrichment from a domain: canonical name, website, description, detected technologies (CMS, e-commerce platform, analytics), social profiles and mail infrastructure (MX). Live signals read from the company website and DNS — no stale database.

## Output

Returns a structured company profile including canonical name, website description, detected technology stack (CMS, e-commerce platform, analytics tools), social media profile URLs, and mail infrastructure details (MX records) — all sourced live from the company website and DNS, not a cached database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string"
  },
  "company_name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "stripe.com",
  "social": [
   "https://twitter.com/stripe",
   "https://linkedin.com/company/stripe"
  ],
  "website": "https://stripe.com",
  "description": "Stripe powers online and in-person payment processing…",
  "company_name": "Stripe | Financial Infrastructure",
  "technologies": [
   "react",
   "cloudflare"
  ],
  "enrichment_level": "web_signals",
  "mail_infrastructure": [
   "aspmx.l.google.com"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-company-enrichment-33be7511/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
