# AgentToll OSINT Timezone Lookup

> AgentToll OSINT Timezone Lookup is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns timezone information and metadata for a given IANA timezone identifier

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/timezone
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-osint-timezone-lookup-58fc6878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wExmUTZLsY-wVCENSv5IJ

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 agenttoll-osint-timezone-lookup-58fc6878 -d '<json body>'
```

Example prompt: Look up the timezone details for America/Chicago — I need the current UTC offset and whether it's observing daylight saving time right now.

## When to prefer this

Use this endpoint when you need structured timezone metadata from an IANA timezone identifier and want a simple pay-per-call model without API key management. Prefer this over manual lookup libraries when operating in an agent context that already supports x402 micropayments on Base, and when you need authoritative current DST and offset data rather than static hardcoded values.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error
- Missing 'timezone' field in request body results in a validation error
- Malformed input (e.g. 'US/Eastern' variants not recognized) may return null or error
- Payment failure via x402 prevents the call from completing
- Network timeout if the service is unavailable

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

An object containing metadata about the specified IANA timezone, likely including UTC offset, timezone abbreviation, DST observance status, and human-readable name for the timezone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "timezone": {
   "type": "string",
   "description": "string IANA timezone e.g. America/New_York"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-osint-timezone-lookup-58fc6878/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
