# Public Company Contacts Extractor

> Public Company Contacts Extractor is a paid API for AI agents from website-evidence-pack.blissful.chatgpt.site, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Crawls a given website and returns all publicly listed contact information (people, emails, phone numbers, social links) with source evidence and page citations.

## Facts

- Endpoint: POST https://website-evidence-pack.blissful.chatgpt.site/api/x402/public-company-contacts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/public-company-contacts-extractor-9db2ab9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ITFiRMn_jvqZVm2EWij2b

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 public-company-contacts-extractor-9db2ab9b -d '<json body>'
```

Example prompt: Can you pull all the publicly listed contacts — emails, phone numbers, and people — from stripe.com and show me which pages they came from?

## When to prefer this

Choose this endpoint when you need publicly listed contact information extracted directly from a company's website with traceable source evidence. It is distinct from social-media scraping or database lookup tools because it crawls the actual website pages and returns quoted evidence with source URLs. Prefer it over generic web search when you need auditable, citation-backed contact data tied to specific pages on a domain.

## Known failure modes

- Website blocks crawling (robots.txt or bot detection) — returns empty contacts with a limitation note
- Invalid or unreachable URL — returns an error or empty result
- Website has no publicly listed contacts — returns empty contacts array with audit metadata intact
- Redirects to a parked or error page — resolved_url may differ from requested_url with no contacts found
- Rate limiting or timeout on the target website — partial results or failure

## How this service works

Focused x402 tools for website CRO audits, public company contacts, exact claim evidence checks, and source-linked research. From $0.02 USDC on Base.

## Output

A JSON object containing the resolved URL, business name, a list of contacts found (names, emails, phones), public links, the pages audited, source evidence objects with direct quotes and source URLs, an audit timestamp, and any limitations on what was returned (e.g. only explicitly published contacts are included).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "maxLength": 2048,
   "description": "Absolute public HTTP(S) homepage URL."
  },
  "max_pages": {
   "type": "integer",
   "default": 4,
   "maximum": 4,
   "minimum": 1,
   "description": "Maximum public same-site HTML pages to inspect."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "contacts": [],
  "audited_at": "2026-07-21T12:00:00.000Z",
  "limitations": [
   "Only contacts explicitly published by the website are returned."
  ],
  "public_links": [],
  "resolved_url": "https://example.com/",
  "business_name": "Example Domain",
  "pages_audited": [
   "https://example.com/"
  ],
  "requested_url": "https://example.com/",
  "schema_version": "2026-07-24",
  "source_evidence": [
   {
    "id": "evidence-1",
    "claim": "Published purpose",
    "quote": "This domain is for use in illustrative examples in documents.",
    "source_url": "https://example.com/",
    "page_section": "Main content"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/public-company-contacts-extractor-9db2ab9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from website-evidence-pack.blissful.chatgpt.site](https://www.zero.xyz/host/website-evidence-pack.blissful.chatgpt.site/llms.txt)
