# Contact Extractor — Email, Phone & Social Links from Any Website

> Contact Extractor — Email, Phone & Social Links from Any Website is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts email addresses, phone numbers, and social media profile links from any given website URL for lead enrichment purposes.

## Facts

- Endpoint: GET https://agents.dyoeway.org/contacts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contact-extractor-email-phone-social-links-from-any-website-c646c158
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MImHZeoJwA3mv3biRKGqD

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 contact-extractor-email-phone-social-links-from-any-website-c646c158
```

Example prompt: Pull all the emails, phone numbers, and social media links you can find on https://acmecorp.com — I need the contact details for lead enrichment.

## When to prefer this

Use this endpoint when you need to quickly extract structured contact information (emails, phones, social links) from a specific website URL without manually browsing the page. Ideal for lead enrichment workflows, sales prospecting, or agent pipelines that need contact details from a known domain.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — no contacts returned
- Website uses heavy JavaScript rendering that blocks scraping — partial or empty results
- No contact information present on the page — empty result set
- Invalid or malformed URL input — error response
- Rate limiting or bot protection on target site — extraction fails or returns incomplete data

## How this service works

Extract emails, phone numbers, and social links from any website — lead enrichment for agents. Input: ?url=

## Output

A structured list of extracted contact data from the target website, including email addresses, phone numbers, and social media profile URLs (e.g. LinkedIn, Twitter, Facebook) found on the page.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Site to pull emails/phones/socials from"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contact-extractor-email-phone-social-links-from-any-website-c646c158/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
