# Delx Unix To ISO

> Delx Unix To ISO is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Converts a Unix timestamp (integer seconds) to an ISO-8601 UTC string, returning both iso and unix fields.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/unix-to-iso
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-unix-to-iso-dfc6948d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PaNI4e7NCfybfAo7Nayz3

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 delx-unix-to-iso-dfc6948d -d '<json body>'
```

Example prompt: Convert the Unix timestamp 1700000000 to ISO-8601 UTC format so I can use it in my log entry.

## When to prefer this

Choose this endpoint when you need a quick, zero-configuration Unix-to-ISO conversion inside an agent pipeline without managing date libraries or runtime dependencies. Ideal for normalizing timestamps in logs, API payloads, or event records where ISO-8601 UTC format is required and you want a micro-cost, stateless call with no data retention.

## Known failure modes

- Non-integer or missing 'unix' field returns a validation error
- Negative or out-of-range unix values may return an error or unexpected result
- Network timeouts or service unavailability return HTTP 5xx
- Insufficient USDC balance or x402 payment failure blocks the request

## How this service works

Convert unix seconds to ISO-8601 Z. Call when you normalize agent timestamps for logs. Returns iso and unix for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns a JSON object containing an 'iso' field with the ISO-8601 UTC datetime string (e.g. '2023-11-14T22:13:20Z') and a 'unix' field echoing the original integer input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "unix": {
   "type": "integer",
   "description": "Input field: unix."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "iso": "2023-11-14T22:13:20Z",
  "unix": 1700000000,
  "schema": "delx/util-unix-to-iso/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-unix-to-iso-dfc6948d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
