# Phone Number Extractor

> Phone Number Extractor is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts and normalizes phone numbers from a web page, distinguishing high-confidence tel: link numbers from candidate numbers found in page text.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/phone-numbers
- 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/phone-number-extractor-b584715d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hl0ubKdQZ9JL0zPEdnv6w

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 phone-number-extractor-b584715d
```

Example prompt: Can you pull all the phone numbers from https://www.acmeplumbing.com/contact and tell me which ones are the most reliable?

## When to prefer this

Choose this endpoint when you need to discover and normalize phone numbers from a specific web page, especially for lead generation or contact list building. It is particularly useful when you want to distinguish reliable tel: link numbers from less certain text-scraped candidates. Prefer it over general web scrapers when phone number extraction and normalization is the primary goal.

## Known failure modes

- Page has no phone numbers — returns empty list
- Target URL is unreachable or returns non-200 status — extraction fails
- Page is JavaScript-rendered and numbers aren't in static HTML — may miss dynamic content
- Numbers in non-standard formats may not be correctly normalized
- Rate limiting or bot-blocking by target site may prevent page fetch

## How this service works

Phone number extraction from a page: candidate numbers found in the text and tel: links, normalised, with the tel-link ones marked as high confidence. Contact discovery for lead lists. $0.01 per page.

## Output

A list of phone numbers found on the page, normalized to a standard format. Numbers sourced from tel: hyperlinks are flagged as high confidence, while numbers extracted from page text are included as candidates. Each entry includes the raw and normalized number and a confidence indicator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phone-number-extractor-b584715d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
