# Company Contact Pack Builder

> Company Contact Pack Builder is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Aggregates a company's contact information from page contacts, forms, social profiles, registrar records, and security channels into a single structured pack.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/company-contact-pack
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-delx-ai-73dd6bca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8buRHHIaaUtccDjHU8Vqb

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 api-delx-ai-73dd6bca -d '<json body>'
```

Example prompt: Build me a full company contact pack for stripe.com — I need their page contacts, contact forms, social profiles, registrar details, and security channels all in one place.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source contact pack for a single company domain — combining page-scraped contacts, forms, socials, WHOIS/registrar data, and security channels in one call. Prefer over a raw page scrape or single-source contact extractor when you need the broadest contact surface for outreach, due diligence, or routing.

## Known failure modes

- Target URL is unreachable or returns non-200 status — partial or empty pack returned
- Domain has no public contact signals — minimal results with empty fields
- Registrar data unavailable due to WHOIS privacy — registrar section omitted
- Social links not discoverable from page — social fields empty
- Invalid or malformed URL input — validation error returned

## How this service works

Build a company contact pack from page contacts, forms, socials, registrar, and security channels.

## Output

A structured contact pack containing extracted emails, phone numbers, social media links, web contact forms, registrar contact details, and security channels (e.g. security.txt) aggregated from the target company's domain.

## Example request

```json
{
 "url": "https://stripe.com",
 "timeout": 8
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "emails": [
    "hello@example.com"
   ],
   "phones": [
    "+15551234567"
   ],
   "priority_links": [
    "https://example.com/contact"
   ]
  },
  "tool_name": "util_company_contact_pack"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-73dd6bca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
