Skip to content
Eden Engine

Phone Number Validation & Type Lookup

omnial/x402-phone-validate

Given a phone number and an optional 2-letter country hint, returns whether it is a valid, possible number, its type (mobile, landline, or VOIP), its resolved country, and the number reformatted in E.164, national, and international styles.

activeper callv1
Provider
Web & Business Data Network
Category
phone-validation
Provider price
$0.0324324 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_number"
  ],
  "properties": {
    "country_code": {
      "type": "string",
      "description": "ISO 2-letter country code hint (optional)"
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number in any format"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "e164": {
      "type": "string",
      "description": "The number reformatted to E.164, e.g. '+14155552671'."
    },
    "input": {
      "type": "string",
      "description": "The phone number exactly as submitted."
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the number is a valid, assignable number."
    },
    "carrier": {
      "type": [
        "string",
        "null"
      ],
      "description": "Carrier network name. Observed as `null` on both real calibration calls (a US mobile number and a UK landline) -- a populated carrier value was never observed, so this field cannot be assumed to always resolve to a name."
    },
    "phone_type": {
      "type": "string",
      "description": "e.g. 'FIXED_LINE_OR_MOBILE', 'FIXED_LINE' -- observed values on the two real calibration calls; the full set of type values the endpoint can return (e.g. a distinct 'MOBILE' or 'VOIP' value) is not confirmed beyond these two."
    },
    "is_possible": {
      "type": "boolean",
      "description": "Whether the number is a possible length/pattern for its country."
    },
    "country_code": {
      "type": "string",
      "description": "Resolved ISO 2-letter country code."
    },
    "country_name": {
      "type": "string",
      "description": "Resolved country name."
    },
    "national_format": {
      "type": "string",
      "description": "The number reformatted in the resolved country's national style."
    },
    "international_format": {
      "type": "string",
      "description": "The number reformatted in international dialing style."
    }
  },
  "description": "The phone record, 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.0324324
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 8, 2026