# OpenFunnel Deep Enrich

> OpenFunnel Deep Enrich is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.132/call, status unknown (last checked 2026-09-16).

Runs a background end-to-end company qualification job: discovers intent signals, finds and ICP-qualifies relevant people at a given domain.

## Facts

- Endpoint: POST https://x402.orthogonal.com/openfunnel/api/v1/enrich/deep-enrich
- Price: $0.132/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openfunnel-deep-enrich-ce90fbbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EsPcaTCSDSVejkUVSd0Ad

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 openfunnel-deep-enrich-ce90fbbb -d '<json body>'
```

Example prompt: Run a deep enrichment on acme.com — use ICP ID 42 and search back 30 days for intent signals, then find and qualify the relevant people there.

## When to prefer this

Choose this endpoint when you need a fully automated, end-to-end account and people enrichment pipeline — not just a simple contact lookup. It is ideal when you want intent signals, ICP qualification, and people discovery combined in one asynchronous job rather than calling multiple point solutions. Prefer it for sales prospecting workflows where you need to qualify an entire company domain before outreach, especially when you already have an ICP definition or a set of target roles.

## Known failure modes

- Missing required domain field returns validation error
- Neither icp_id nor target_icp_roles provided causes job rejection
- Invalid or unreachable domain results in no people or account found
- ICP ID not found in system returns not-found error
- Job times out beyond 30 minutes for large domains
- Payment of 0.132 USDC not fulfilled causes 402 Payment Required error

## How this service works

Start a background enrichment run for a company domain. OpenFunnel creates or finds the account, discovers intent signals, finds relevant people, and ICP-qualifies them. Requires domain plus either icp_id or target_icp_roles; jobs can take 15 to 30 minutes.

## Output

A background job is queued and runs for 15–30 minutes. Upon completion the agent receives an enriched company account record, discovered intent signals, a list of relevant people found at the domain, and ICP qualification scores for those people — optionally organized into a named campaign.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "description": "Search goal (overrides default pitch)"
  },
  "domain": {
   "type": "string",
   "description": "Request model for end-to-end company qualification and people enrichment."
  },
  "icp_id": {
   "type": "integer",
   "description": "ICP ID to fetch target roles from"
  },
  "timeframe": {
   "type": "integer",
   "description": "Timeframe in days to search back"
  },
  "campaign_name": {
   "type": "string",
   "description": "Campaign name to create for enriched people"
  },
  "people_locations": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Target people locations (overrides ICP)"
  },
  "target_icp_roles": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Target ICP roles (overrides icp_id roles)"
  },
  "max_jobs_to_check": {
   "type": "integer",
   "description": "Max jobs to check for relevance"
  },
  "people_sub_locations": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Target people sub-locations (overrides ICP)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openfunnel-deep-enrich-ce90fbbb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
