# PennyRail Epoch-to-ISO Timestamp Converter

> PennyRail Epoch-to-ISO Timestamp 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 Unix epoch timestamp to an ISO 8601 formatted datetime string

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/time.convert-any--epoch-to-iso
- 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-epoch-to-iso-timestamp-converter-52a9467a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1mEoZKIPyrF1rPpAhaq2W

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-epoch-to-iso-timestamp-converter-52a9467a -d '<json body>'
```

Example prompt: Convert the epoch timestamp 1700000000 to an ISO 8601 date string for me.

## When to prefer this

Use this endpoint when you need a quick, cheap, single-call conversion from Unix epoch (seconds or milliseconds) to ISO 8601 format without setting up a local library or importing a datetime dependency. It is ideal for agents processing API responses or log data that contain raw numeric timestamps and need them normalized to a standard human-readable format. At $0.001 per call it is cost-effective for occasional or low-volume conversions.

## Known failure modes

- Missing or malformed 'input' object in request body returns a validation error
- Non-numeric or out-of-range epoch value may produce an error or unexpected result
- Ambiguity between seconds vs milliseconds epoch may produce incorrect output if not handled by the service
- Service unavailability on Vercel infrastructure returns a 5xx error
- Payment failure or insufficient USDC balance blocks the call with a 402 response

## How this service works

Machine-readable settlement service

## Output

Returns an ISO 8601 formatted datetime string corresponding to the provided Unix epoch timestamp (e.g. '2023-11-14T22:13:20.000Z'), delivered as a JSON object.

## 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-epoch-to-iso-timestamp-converter-52a9467a/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)
