Skip to content
Eden Engine

Geocode an Address, or Reverse-Geocode Coordinates

omnial/geocode

Given either an address/place-name query or a lat/lon coordinate pair, returns the matching location(s): coordinates, a formatted display address, a structured address breakdown (street, city, state, postcode, country), a place type/category, and a bounding box. Forward geocoding (`q`) and reverse geocoding (`lat`+`lon`) are mutually exclusive on a single call.

activeper callv1
Provider
Web & Business Data Network
Category
geocoding
Provider price
$0.015015 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",
  "anyOf": [
    {
      "required": [
        "q"
      ]
    },
    {
      "required": [
        "lat",
        "lon"
      ]
    }
  ],
  "properties": {
    "q": {
      "type": "string",
      "description": "address (forward geocode)"
    },
    "lat": {
      "type": "string",
      "description": "latitude (reverse geocode)"
    },
    "lon": {
      "type": "string",
      "description": "longitude (reverse geocode)"
    },
    "maxItems": {
      "type": "string",
      "default": "5"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of entries in `items`; 1 on both fixtures observed."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "lat": {
            "type": "number"
          },
          "lon": {
            "type": "number"
          },
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'geocode' on both fixtures."
          },
          "osmId": {
            "type": "number",
            "description": "The underlying OpenStreetMap element id."
          },
          "address": {
            "type": "object",
            "properties": {
              "city": {
                "type": "string"
              },
              "road": {
                "type": "string"
              },
              "state": {
                "type": "string"
              },
              "region": {
                "type": "string",
                "description": "Present only on one of two fixtures observed (France)."
              },
              "suburb": {
                "type": "string"
              },
              "country": {
                "type": "string"
              },
              "quarter": {
                "type": "string",
                "description": "Present only on one of two fixtures observed (Paris)."
              },
              "building": {
                "type": "string",
                "description": "Present only when the place is a named building (observed on one of two fixtures)."
              },
              "postcode": {
                "type": "string"
              },
              "country_code": {
                "type": "string",
                "description": "Lowercase two-letter country code, e.g. 'us', 'fr'."
              },
              "city_district": {
                "type": "string"
              },
              "ISO3166-2-lvl4": {
                "type": "string",
                "description": "Subdivision code, e.g. 'US-NY', 'FR-IDF'."
              },
              "ISO3166-2-lvl6": {
                "type": "string",
                "description": "A finer subdivision code; present only on one of two fixtures observed (Paris)."
              }
            },
            "description": "Structured address breakdown. Which sub-fields are present varies by location -- e.g. `building` appeared only on the Statue of Liberty fixture, `quarter`/`region`/`ISO3166-2-lvl6` only on the Eiffel Tower fixture. Only the fields common to both fixtures are listed as likely-present; treat every field here as optional.",
            "additionalProperties": true
          },
          "osmType": {
            "type": "string",
            "description": "The underlying OpenStreetMap element type, e.g. 'way'."
          },
          "category": {
            "type": "string",
            "description": "OSM-style place category, e.g. 'building', 'highway'."
          },
          "importance": {
            "type": "number",
            "description": "A relevance/prominence score; observed ranging from ~0.00009 to ~0.60 across the two fixtures, so its scale is not confirmed to be a simple 0-1 bound."
          },
          "addressType": {
            "type": "string",
            "description": "Observed identical to `category` on both fixtures captured."
          },
          "boundingBox": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxItems": 4,
            "minItems": 4,
            "description": "Four decimal-degree strings, in order [south lat, north lat, west lon, east lon] (inferred from the two fixtures' own lat/lon values, not vendor-documented) -- each a numeric value encoded AS A STRING, not a number."
          },
          "displayName": {
            "type": "string",
            "description": "Full formatted address/label for the place, e.g. 'Statue of Liberty, Flagpole Plaza, Manhattan, New York County, New York, 10004, United States'."
          }
        },
        "additionalProperties": true
      }
    }
  },
  "description": "The geocode 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.015015
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 15, 2026