# BizIntel API – Geography Timezone Lookup

> BizIntel API – Geography Timezone Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the IANA timezone name and UTC offset for a given latitude and longitude coordinate pair.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/geography/timezone
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-geography-timezone-lookup-a264766b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zHqP1NCkYWFKKer1WjLPs

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bizintel-api-geography-timezone-lookup-a264766b -d '<json body>'
```

Example prompt: What timezone and UTC offset correspond to coordinates 34.0522 latitude and -118.2437 longitude?

## When to prefer this

Use this endpoint when you have geographic coordinates and need a reliable IANA timezone name and UTC offset — particularly in agent workflows dealing with scheduling, event localization, IoT data tagging, or validating user-submitted location data. Prefer this over client-side libraries when server-side timezone resolution is needed without maintaining timezone databases, or when working in environments without access to a local tz database. The pay-per-call x402 USDC model means no API key management is required.

## Known failure modes

- Invalid or out-of-range latitude/longitude values may return an error or unsupported result
- Coordinates over open ocean or uninhabited areas may return 'supported: false' or low confidence
- Missing required latitude or longitude fields will cause a validation error
- Coordinates near timezone boundaries may return lower confidence results
- Payment failure via x402 will block the call entirely

## How this service works

Resolves timezone identifier names and current offsets for coordinate coordinates.

## Output

Returns a JSON object containing the IANA timezone string (e.g. 'America/Los_Angeles'), the UTC offset in seconds (e.g. -28800), a 'supported' boolean, a confidence level (e.g. 'high'), a data_as_of date stamp, and a disclaimer. Also includes a warnings array for edge cases.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "latitude": {
       "type": "number",
       "description": "Latitude"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "offset": -28800,
   "timezone": "America/Los_Angeles"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-geography-timezone-lookup-a264766b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
