# 24K Labs Extract Emails & Phone Numbers

> 24K Labs Extract Emails & Phone Numbers is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Fetches a given web page and extracts all email addresses and phone numbers found in its content.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/extract-emails
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-extract-emails-phone-numbers-412639f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eTaFmUbbP1MkxU6bx8jxw

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 24k-labs-extract-emails-phone-numbers-412639f0 -d '<json body>'
```

Example prompt: Can you fetch the contact page at https://example.com/contact and extract all the email addresses and phone numbers listed there?

## When to prefer this

Choose this endpoint when you need to quickly harvest contact information (emails and phone numbers) from a specific public web page without building your own scraper. It is ideal for lead generation, journalism, or sales research workflows where you have a target URL and want structured contact data in one call.

## Known failure modes

- URL is unreachable or returns a non-200 status — no contacts returned
- Page uses JavaScript rendering only, so static fetch misses dynamically loaded contacts
- Page has no email or phone numbers — returns empty lists
- URL is blocked by robots.txt or rate-limiting — fetch fails
- Malformed or non-HTTP URL provided — request error

## How this service works

Fetch a page and extract email addresses and phone numbers found in the content.

## Output

A structured list of email addresses and phone numbers extracted from the fetched web page, derived from the page's visible content and markup.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "emails": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-extract-emails-phone-numbers-412639f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
