# PennyRail Unix Timestamp to ISO 8601 Converter

> PennyRail Unix Timestamp to ISO 8601 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 timestamp (integer) to an ISO 8601 formatted datetime string

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/time.to-iso--unix-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-unix-timestamp-to-iso-8601-converter-021d31be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KfLAwxVzzgcorzrKoWyDr

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-unix-timestamp-to-iso-8601-converter-021d31be -d '<json body>'
```

Example prompt: Can you convert the Unix timestamp 1700000000 to ISO 8601 format for me?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call microservice to convert a single Unix timestamp to ISO 8601 without setting up your own date library or server-side logic. Ideal for AI agents that occasionally encounter epoch times in API responses and need them normalized on the fly. At $0.001 USDC per call it is cost-effective for infrequent, single-value conversions.

## Known failure modes

- Missing or non-numeric 'input' field returns a validation error
- Very large or out-of-range epoch values may produce invalid or null results
- Non-integer floats may be truncated or rejected depending on server handling
- Network or cold-start latency on Vercel serverless may cause occasional timeouts

## How this service works

Machine-readable settlement service

## Output

Returns an object containing the ISO 8601 formatted datetime string corresponding to the provided Unix timestamp (e.g. '2023-11-14T22:13:20.000Z'). The response schema is open-ended so may include additional metadata fields.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-unix-timestamp-to-iso-8601-converter-021d31be/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)
