# PennyRail Timezone Converter

> PennyRail Timezone Converter is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a datetime value from one timezone to another, returning the equivalent local time in the target timezone

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/time.convert-any--timezone-convert
- 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/pennyrail-timezone-converter-ffba8702
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TNpXxOqJ6VDi2bHAawJzN

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 pennyrail-timezone-converter-ffba8702 -d '<json body>'
```

Example prompt: What time would 3:00 PM Eastern Standard Time be in Tokyo? Convert that for me so I can schedule our call.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call timezone conversion without setting up a full datetime library or managing timezone databases yourself; ideal for agents that occasionally need to translate times between zones without a dedicated time-service integration

## Known failure modes

- Invalid or unrecognized timezone identifier returns an error
- Malformed datetime input causes parsing failure
- Missing required input fields returns a validation error
- Ambiguous local times (e.g. during DST transitions) may produce unexpected results

## How this service works

Machine-readable settlement service

## Output

Returns the input datetime expressed in the target timezone, including the converted time value, timezone identifier, and UTC offset for the destination zone

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

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