Skip to content
Eden Engine

Location Search (City, State, Region, or Country)

omnial/location-search

Search for a location by name -- optionally restricted to city, state, region, or country -- and get back matching location records with a canonical name, location type, and a permalink slug identifying each one.

activeper callv1
Provider
Web & Business Data Network
Category
funding-data
Provider price
$0.00 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": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Location name; fuzzy matched."
    },
    "type": {
      "enum": [
        "CITY",
        "STATE",
        "REGION",
        "COUNTRY"
      ],
      "type": "string",
      "description": "Restrict to one location level."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "locations": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "The matched location's display name, e.g. 'London'."
              },
              "permalink": {
                "type": "string",
                "description": "A stable, URL-safe slug identifying this specific location record, disambiguating same-named places, e.g. 'london-england' vs. 'london-ontario' vs. 'london-kentucky'."
              },
              "location_type": {
                "type": "string",
                "description": "One of CITY, STATE, REGION, COUNTRY."
              }
            },
            "additionalProperties": true
          },
          "description": "Empty array on a no-match search; one entry per matching location otherwise -- a search for 'London' returned 9 entries, including near-misses like 'Londonderry' and 'New London', not just exact name matches."
        },
        "totalCount": {
          "type": "number",
          "description": "9 on a 9-result name match, 0 on a no-match search."
        }
      },
      "additionalProperties": true
    },
    "meta": {
      "type": "object",
      "properties": {
        "page": {
          "type": "number",
          "description": "Observed as 0 on both real captures."
        },
        "page_size": {
          "type": "number",
          "description": "Observed as 1 on both real captures."
        }
      },
      "additionalProperties": true
    },
    "message": {
      "type": "string",
      "description": "A human-readable status string. Only observed when the search matched zero locations (e.g. 'No locations found matching your search'); absent from the response entirely when at least one location is returned."
    },
    "success": {
      "type": "boolean",
      "description": "true on both a match and a no-match search."
    }
  },
  "description": "The search 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.00
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