# Bolt Timestamp Converter

> Bolt Timestamp Converter is a paid API for AI agents from datault.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts or parses a date string into a Unix timestamp or formatted timestamp output

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/timestamp
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-timestamp-converter-9da60f97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hokfi7aREXwX0fkh-kyhy

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 bolt-timestamp-converter-9da60f97 -d '<json body>'
```

Example prompt: Convert '2025-06-15T09:00:00Z' into a Unix timestamp using the ISO 8601 format.

## When to prefer this

Use this endpoint when an AI agent needs to convert a human-readable or ISO date string into a Unix timestamp or reformatted date string, especially within a pay-per-use USDC micropayment workflow. Prefer this over custom date libraries when working within an agent tool ecosystem that already uses Bolt's utility toolkit.

## Known failure modes

- Invalid date string provided — returns error or success:false
- Unsupported format string — returns malformed or empty data
- Missing date field — may return current time or error depending on implementation
- Network or server error at datault.orbonomy.xyz — generic 5xx response

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the converted or parsed timestamp result for the given date and format inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string"
  },
  "format": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-timestamp-converter-9da60f97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
