# The Stall — Timezone Lookup (x402)

> The Stall — Timezone Lookup (x402) is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.034/call, status unknown (last checked 2026-09-15).

Returns current UTC time, local ISO time, UTC offset, DST status, and long timezone name for a given timezone identifier, payable per-call in USDC on Base via x402.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/timezone
- Price: $0.034/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-timezone-lookup-x402-cb9b221b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AKbENkpjCiGQtI8ec550p

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 the-stall-timezone-lookup-x402-cb9b221b
```

Example prompt: What's the current local time and UTC offset for the America/Chicago timezone, and is DST currently active there?

## When to prefer this

Use this endpoint when you need current time data for a specific timezone without an API key or account — ideal for AI agents needing one-off timezone lookups paid per-call in USDC. Prefer over free alternatives when operating in an x402/crypto-native payment context or when no API key management is desired.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns empty results or error
- Missing 'properties' query parameter may return default (UTC) or error
- Payment failure (insufficient USDC, wrong network) results in HTTP 402 with no data
- Network timeout returns no response
- Malformed request body returns 4xx error

## How this service works

Timezone intelligence using the IANA database (418 zones) built into Node.js. Returns current local time, UTC offset, DST status, and the long timezone name for any IANA timezone. Can also convert an ISO timestamp to one or more target timezones. Useful for scheduling agents, global operations, and time-aware data enrichment. Zero external API calls — instant response.

## Output

Returns a JSON object with count, generated_at timestamp, and a results array containing: the queried timezone string, current UTC time, local ISO time, UTC offset string (e.g. GMT+05:30), offset in minutes, long timezone name, whether DST is currently active (is_dst), and whether the timezone ever uses DST (uses_dst).

## Example request

```json
{
 "properties": "timezone"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-timezone-lookup-x402-cb9b221b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
