# Phone Number Parser & E.164 Normalizer

> Phone Number Parser & E.164 Normalizer 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).

Parses and normalizes a phone number into E.164 format, extracts country code and national number, checks plausibility, and returns a display-formatted version.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/phone-parse
- 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-parser-e-164-normalizer-0e253e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m8_LOEj_5fqr4e9jRAAS6

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-parser-e-164-normalizer-0e253e1f
```

Example prompt: Can you parse and normalize the phone number +1 (416) 555-0193 — give me the E.164 format, the detected country, the national number, and whether the length looks plausible?

## When to prefer this

Choose this endpoint when you need lightweight, low-cost phone number normalization and country detection without a full telecom validation suite. It is ideal for contact data cleanup, CRM ingestion pipelines, and pre-call lead enrichment where E.164 standardization and a plausibility check are sufficient. Prefer heavier carriers or MVNO lookup APIs if you need line-type detection (mobile vs. landline), carrier name, or real-time reachability checks.

## Known failure modes

- Unrecognized country calling code (not among the 50 supported) — returns error or null country
- Malformed input with non-numeric characters that cannot be stripped — parse failure
- Number too short or too long relative to country norms — plausibility check returns false
- Missing or empty input query parameter — 400 bad request
- Payment not processed — 402 payment required

## How this service works

Phone number parser: E.164 normalisation, detected country from the calling code, national number, a plausibility check on length, and a display format. Handles 50 country codes. Contact data cleanup. $0.01 per number.

## Output

Returns the phone number in E.164 format, the detected country name and calling code, the national portion of the number, a plausibility flag indicating whether the digit count is within the expected range for that country, and a human-friendly display-formatted version. Covers 50 country codes.

## 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-parser-e-164-normalizer-0e253e1f/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)
