# Delx Seconds To HMS

> Delx Seconds To HMS 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 an integer number of seconds into a human-readable HH:MM:SS string format

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/seconds-to-hms
- 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-seconds-to-hms-2f654d4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DIQT3B_mM80kgCsHuq-RA

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-seconds-to-hms-2f654d4e -d '<json body>'
```

Example prompt: Convert 3723 seconds into HH:MM:SS format so I can display the elapsed time on my dashboard.

## When to prefer this

Choose this endpoint when you need a simple, reliable conversion of a raw integer second count into a human-readable HH:MM:SS string, especially in agent workflows where displaying SLA timers, video durations, or elapsed times is required and no local utility is available. It is a lightweight, stateless micro-utility with no API key requirements.

## Known failure modes

- Non-integer or missing 'seconds' field causes a validation error
- Negative integer values may produce unexpected or invalid output
- Payment failure via x402 on Base will prevent the call from completing

## How this service works

Convert seconds to HH:MM:SS. Call when you format agent SLA timers. Returns hms string and seconds 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 an HH:MM:SS formatted string representing the given number of seconds, along with the original seconds value as a number. No external network calls or data retention occur.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hms": "00:01:05",
  "schema": "delx/util-seconds-to-hms/v1",
  "seconds": 65
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-seconds-to-hms-2f654d4e/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)
