Skip to content
Eden Engine

Timezone Lookup by City, Country Code, or Coordinates

omnial/x402-timezone-lookup

Given a city name, a 2-letter country code, or a latitude,longitude coordinate pair, returns the location's IANA timezone, its current UTC offset and abbreviation, whether daylight saving time is in effect, and the current local time. A query that does not resolve to a known location comes back as a normal result with `found: false` and an explanation, not an error.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
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": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Country code, city name, or coordinates"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "A human-readable explanation, present only when the query did not resolve to a known location, suggesting a country code, city name, or coordinates instead."
    },
    "found": {
      "type": "boolean",
      "description": "Present and `false` when the query did not resolve to a known location (observed on a coordinate-pair query). Not present at all on a resolved lookup -- treat its absence as a successful resolution, not as `found: true` implied."
    },
    "query": {
      "type": "string",
      "description": "The query text exactly as submitted, echoed back."
    },
    "is_dst": {
      "type": "boolean",
      "description": "Whether daylight saving time is currently in effect. Only observed on a resolved lookup."
    },
    "timezone": {
      "type": [
        "string",
        "null"
      ],
      "description": "The IANA timezone name, e.g. 'Europe/London'. Observed `null` when the query does not resolve."
    },
    "utc_offset": {
      "type": "string",
      "description": "e.g. 'UTC+1'. Only observed on a resolved lookup."
    },
    "abbreviation": {
      "type": "string",
      "description": "e.g. 'GMT+1'. Only observed on a resolved lookup."
    },
    "country_code": {
      "type": "string",
      "description": "2-letter country code of the resolved location. Only observed on a resolved lookup."
    },
    "utc_offset_hours": {
      "type": "number",
      "description": "The same offset as a plain number of hours. Only observed on a resolved lookup."
    },
    "current_local_time": {
      "type": "string",
      "description": "The current local time at the resolved location, e.g. '09/19/2026, 08:33:32 GMT+1'. Only observed on a resolved lookup."
    }
  },
  "description": "The timezone lookup 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.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 23, 2026