# Prospect Intelligence Enrichment API

> Prospect Intelligence Enrichment API is a paid API for AI agents from prospect-intelligence.prospectintel.workers.dev, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-19).

Enriches prospect or lead data with intelligence by accepting a POST request and returning enriched information about a prospect

## Facts

- Endpoint: POST https://prospect-intelligence.prospectintel.workers.dev/v1/enriched
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prospect-intelligence-enrichment-api-76b193d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FPegl6BPvdVWj_g4rIPNA

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 prospect-intelligence-enrichment-api-76b193d6 -d '<json body>'
```

Example prompt: Can you enrich this prospect — Acme Corp, contact Jane Doe, jane@acmecorp.com — and give me a fuller intelligence profile before I reach out?

## When to prefer this

Choose this endpoint when you need to enrich sales prospects or leads with additional intelligence data prior to outreach or CRM entry. It is priced at $0.75 per call, making it suitable for targeted, high-value lead enrichment rather than bulk commodity lookups. Prefer this over generic data APIs when your use case is specifically prospect/lead intelligence in a sales or marketing context.

## Known failure modes

- Missing or malformed required input body returns a validation error
- Prospect not found in underlying data sources returns empty or partial enrichment
- Insufficient identifying information (e.g. no email or company name) may yield low-confidence results
- Payment failure via x402 protocol results in 402 response before enrichment is performed
- Timeout if underlying data providers are slow to respond

## How this service works

Prospect Intelligence

## Output

Returns an enriched prospect object containing additional intelligence layered on top of the submitted input — potentially including firmographic details, contact attributes, company signals, or other data points that help qualify and contextualize the lead.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "const": "http"
    },
    "method": {
     "const": "POST"
    },
    "bodyType": {
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospect-intelligence-enrichment-api-76b193d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prospect-intelligence.prospectintel.workers.dev](https://www.zero.xyz/host/prospect-intelligence.prospectintel.workers.dev/llms.txt)
