Skip to content
Eden Engine

Postal Address Validation & Standardization

omnial/x402-address-validate

Given a free-text postal address (and an optional ISO 2-letter country code hint), returns whether it resolves to a real location, a standardized/geocoded version of the address, parsed components (street, house number, city, state, postal code, country), latitude and longitude, and a match-type indicator, across 200+ countries.

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": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "description": "Full address as free text"
    },
    "country_code": {
      "type": "string",
      "description": "ISO 2-letter country code hint (optional)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "valid": {
      "type": "boolean",
      "description": "Whether the address resolved to a real, matchable location."
    },
    "latitude": {
      "type": [
        "number",
        "null"
      ],
      "description": "Observed null when the address does not resolve."
    },
    "longitude": {
      "type": [
        "number",
        "null"
      ],
      "description": "Observed null when the address does not resolve."
    },
    "components": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "street": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "postal_code": {
          "type": "string"
        },
        "country_code": {
          "type": "string"
        },
        "house_number": {
          "type": "string"
        }
      },
      "description": "Parsed address components. Observed null (the whole object, not individual fields) when the address does not resolve.",
      "additionalProperties": true
    },
    "confidence": {
      "type": "number",
      "description": "Match confidence, 0 to 1. Observed 0.84 on a fully-matched address and 0 on an address that did not resolve at all."
    },
    "match_type": {
      "type": [
        "string",
        "null"
      ],
      "description": "e.g. 'approximate' on a resolved match; observed null when the address does not resolve."
    },
    "input_address": {
      "type": "string",
      "description": "The address text exactly as submitted, echoed back."
    },
    "formatted_address": {
      "type": [
        "string",
        "null"
      ],
      "description": "Standardized, geocoder-formatted version of the input address. Observed null when the address does not resolve to any location."
    }
  },
  "description": "The address validation 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 8, 2026