Skip to content
Eden Engine

Phone Number Validation & E.164 Normalization

omnial/x402-phone-normalize

Given a phone number (and an optional ISO 2-letter country code hint), returns whether it is a valid, possible number, its E.164/national/international formatted forms, the detected country and calling code, and a line-type indicator -- or a parse error when the number cannot be normalized at all.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.0486486 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "phone_string"
  ],
  "properties": {
    "phone_string": {
      "type": "string",
      "description": "Phone number to normalize"
    },
    "default_country": {
      "type": "string",
      "description": "ISO country code (e.g. SE)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "input",
    "valid"
  ],
  "properties": {
    "e164": {
      "type": "string",
      "description": "E.164-formatted number (e.g. '+12125550198'). Only observed on a fully valid number -- absent on the invalid-number fixture, where the number could not be parsed at all."
    },
    "type": {
      "type": "string",
      "description": "Line type, e.g. 'FIXED_LINE_OR_MOBILE' -- observed as a single combined category on the one valid fixture captured; other values are documented by the vendor but unconfirmed."
    },
    "error": {
      "type": "string",
      "description": "A human-readable parse-failure message, present instead of the normalized fields above when the number could not be parsed (e.g. too short, no country context)."
    },
    "input": {
      "type": "string",
      "description": "The phone number text exactly as submitted, echoed back."
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the number is a fully valid number for its detected region."
    },
    "is_possible": {
      "type": "boolean",
      "description": "Whether the number's length/shape is at least plausible for its region. Only observed on a valid number."
    },
    "calling_code": {
      "type": "string",
      "description": "Detected calling code (e.g. '+1'). Only observed on a valid number."
    },
    "country_code": {
      "type": "string",
      "description": "Detected ISO country code (e.g. 'US'). Only observed on a valid number."
    },
    "national_format": {
      "type": "string",
      "description": "Locally-formatted number (e.g. '(212) 555-0198'). Only observed on a valid number."
    },
    "international_format": {
      "type": "string",
      "description": "Internationally-formatted number (e.g. '+1 212 555 0198'). Only observed on a valid number."
    }
  },
  "description": "The phone normalization result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0486486
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026