# Agent402 UK Timezone Converter

> Agent402 UK Timezone Converter is a paid API for AI agents from agent402.co.uk, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Converts a timestamp between two IANA timezones, defaulting to the current time if none is specified

## Facts

- Endpoint: GET https://agent402.co.uk/v1/time/convert
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-uk-timezone-converter-e8a9469c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IJ70wsP8cBrV9LQem0cZc

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 agent402-uk-timezone-converter-e8a9469c
```

Example prompt: What time will it be in America/New_York when it's 2026-08-10T12:00:00Z in UTC? Convert that timestamp for me so we don't get the DST wrong.

## When to prefer this

Prefer this endpoint when an agent needs reliable, DST-aware timezone conversion for scheduling across multiple regions, especially when you cannot trust an LLM to correctly apply daylight saving time rules. It accepts standard IANA timezone identifiers and ISO timestamps, making it a drop-in utility for calendar agents, meeting schedulers, and multi-region workflow orchestration.

## Known failure modes

- Invalid IANA timezone string returns an error or valid:false
- Malformed ISO time string causes a parsing error
- Missing required 'from' or 'to' query parameters returns a 400 error
- Network or upstream service timeout returns a 5xx error

## How this service works

Don't burn tokens on deterministic work. Go/no-go jobs first: payout preflight, text firewall (PII/secrets), budget check — then rails, calendars, finmath. x402 USDC on Base. UK + global. agent402.co.uk — not agent402.tools. $0.001–$0.002 USDC on Base. No API keys.

## Output

Returns a JSON object with the source timezone, target timezone, the converted timestamp in UTC ISO 8601 format, and a validity flag confirming the conversion succeeded. Example: {"from":"UTC","to":"America/New_York","utc_iso":"2026-08-10T12:00:00.000Z","valid":true}.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target IANA timezone"
      },
      "from": {
       "type": "string",
       "description": "Source IANA timezone"
      },
      "time": {
       "type": "string",
       "description": "ISO time (default now)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "America/New_York",
  "from": "UTC",
  "valid": true,
  "utc_iso": "2026-08-10T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-uk-timezone-converter-e8a9469c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.co.uk](https://www.zero.xyz/host/agent402.co.uk/llms.txt)
