# Pipe0 Company Overview Enrichment

> Pipe0 Company Overview Enrichment is a paid API for AI agents from pipe0.withzero.xyz, paid per call via MPP, $0.029383/call, status unknown (last checked 2026-09-15).

Enriches company website URLs with overview data including description, industry, geography, and size via Pipe0 company:overview@2

## Facts

- Endpoint: POST https://pipe0.withzero.xyz/api/v1/company/overview
- Price: $0.029383/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 3
- Provider: pipe0.withzero.xyz
- Website: https://pipe0.withzero.xyz
- Canonical page: https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-company-overview-enrichment-5123fc1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y9PAUhbGqJbXlcHuReEVi

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 pipe0-withzero-xyz-pipe0-company-overview-enrichment-5123fc1d -d '<json body>'
```

Example prompt: Can you enrich these company websites for me — https://stripe.com and https://notion.so — and get me their industry, company description, geography, and size using Pipe0 company overview?

## When to prefer this

Use this endpoint when you need structured firmographic overview data (description, industry, geography, size) for one or more companies and have their website URLs available. Prefer this over identity resolution when you already know the URL and need enriched overview fields rather than just identity matching. It composes well in GTM workflows alongside Crustdata search and Wiza contact enrichment.

## Known failure modes

- Invalid or non-URI company_website_urls returns validation error
- Exceeding 25 URLs per request returns schema validation failure
- Unknown or unresolvable URLs may return empty or null Pipe0 records
- Insufficient Pipe0 credits may cause billing failure
- sandbox environment may return mock or incomplete data

## How this service works

Enrich one company domain or professional-network company profile URL through Pipe0 company:overview@3. At-cost cap: 1.00 Pipe0 credit × $999/34,000 credits for company description, industry, geography, size, and related overview fields.

## Output

Returns raw Pipe0 company:overview@2 records for each submitted URL containing company description, industry, geography, size, and other overview fields, plus billing metadata including credits used and USDC cost settled.

## Example request

```json
{
 "environment": "sandbox",
 "company_website_urls": [
  "https://stripe.com",
  "https://notion.so"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "company_domains": [
   "openai.com"
  ]
 },
 "properties": {
  "environment": {
   "enum": [
    "production",
    "sandbox"
   ],
   "type": "string"
  },
  "company_domains": {
   "type": "array",
   "items": {
    "type": "string",
    "minLength": 1
   },
   "maxItems": 1,
   "minItems": 1,
   "description": "Company domains to enrich through company:overview@3."
  },
  "company_profile_urls": {
   "type": "array",
   "items": {
    "type": "string",
    "format": "uri"
   },
   "maxItems": 1,
   "minItems": 1,
   "description": "Professional-network company profile URLs to enrich through company:overview@3."
  },
  "company_website_urls": {
   "type": "array",
   "items": {
    "type": "string",
    "format": "uri"
   },
   "maxItems": 1,
   "minItems": 1,
   "description": "Compatibility alias for website URLs. Normalized to company_domain before calling Pipe0 company:overview@3."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "data",
  "billing"
 ],
 "properties": {
  "data": {
   "description": "Raw JSON response returned by Pipe0."
  },
  "billing": {
   "type": "object",
   "required": [
    "pipe0Credits",
    "maxPipe0Credits",
    "planUsdcMicro",
    "planCredits",
    "pricingVersion",
    "settledUsdcMicro"
   ],
   "properties": {
    "planCredits": {
     "type": "string"
    },
    "pipe0Credits": {
     "type": "number"
    },
    "planUsdcMicro": {
     "type": "string"
    },
    "pricingVersion": {
     "type": "number"
    },
    "maxPipe0Credits": {
     "type": "number"
    },
    "settledUsdcMicro": {
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-company-overview-enrichment-5123fc1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pipe0.withzero.xyz](https://www.zero.xyz/host/pipe0.withzero.xyz/llms.txt)
