# PennyRail Nano: Unix Timestamp to ISO 8601 Date Converter

> PennyRail Nano: Unix Timestamp to ISO 8601 Date 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 (number) to an ISO 8601 formatted date string

## Facts

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

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-nano-unix-timestamp-to-iso-8601-date-converter-681a205b -d '<json body>'
```

Example prompt: Convert the Unix timestamp 1716422400 to an ISO 8601 date string for me.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call microservice to convert Unix timestamps to ISO 8601 dates without setting up a local utility or library. Ideal for agent workflows that need on-demand time format conversion as part of a data pipeline.

## Known failure modes

- Missing required 'input' field returns a validation error
- Non-numeric input causes a type error
- Extremely large or negative numbers may produce out-of-range date errors
- Payment failure (402) if USDC balance is insufficient

## How this service works

Machine-readable settlement service

## Output

Returns a JSON object containing the ISO 8601 formatted date string corresponding to the input Unix timestamp number.

## 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-nano-unix-timestamp-to-iso-8601-date-converter-681a205b/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)
