# PennyRail Timestamp to ISO 8601 Converter

> PennyRail 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 (numeric) to an ISO 8601 formatted date-time string

## Facts

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

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

Example prompt: Can you convert the Unix timestamp 1716825600 to an ISO 8601 date-time string for me?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call microservice to convert a numeric Unix timestamp to ISO 8601 format without standing up any local date parsing logic. Useful in agent pipelines that encounter raw epoch values from APIs or databases and need a normalized, human-readable date string for display or downstream processing.

## Known failure modes

- Missing or non-numeric input field returns a validation error
- Extremely large or negative timestamp values may return an error or unexpected result
- Network or service unavailability returns a 5xx error
- Payment failure via x402 protocol prevents the call from completing

## How this service works

Machine-readable settlement service

## Output

Returns an object containing the ISO 8601 formatted date-time string corresponding to the provided Unix timestamp (e.g. '2024-05-27T16:00:00.000Z').

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