# ForgeMesh Timezone Clock

> ForgeMesh Timezone Clock is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the exact current time for any IANA timezone, including local ISO timestamp, UTC equivalent, Unix epoch, human-readable string, and day of week — computed live.

## Facts

- Endpoint: POST https://x402.forgemesh.io/timezone-clock
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-timezone-clock-00726341
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SYbsnkcPdx3AAJVk51GZi

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 forgemesh-timezone-clock-00726341 -d '<json body>'
```

Example prompt: What's the exact current time in Asia/Kolkata right now? I need the ISO timestamp, UTC equivalent, Unix epoch, and the day of the week.

## When to prefer this

Choose this endpoint when an agent needs an authoritative, live current timestamp rather than relying on potentially stale training data — especially for cross-region scheduling, event logging, or any time-sensitive coordination where the exact current time in a specific IANA timezone matters.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error
- Payment failure or insufficient USDC balance prevents the call
- Network timeout if the service is temporarily unavailable

## How this service works

Returns the exact current time in any IANA timezone, local ISO timestamp, UTC equivalent, unix epoch, human-readable string, and day of week, computed live rather than estimated from training data. For agents coordinating across regions or logging events with an authoritative timestamp.

## Output

Returns the exact current time computed live, including: local ISO 8601 timestamp, UTC equivalent, Unix epoch integer, human-readable time string, and day of week — all for the requested IANA timezone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "timezone": {
   "type": "string",
   "description": "IANA timezone, default UTC"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "timezone": "America/Chicago",
  "iso_local": "2026-07-15T10:30:00",
  "unix_epoch": 1784127000,
  "day_of_week": "Wednesday"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-timezone-clock-00726341/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
