# Bolt Timestamp Converter

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

Converts a date string into a Unix timestamp or formatted timestamp, optionally applying a custom format

## Facts

- Endpoint: POST https://bolt.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-69aec9e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XqablaJI9ueQOXyGFFGeC

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-69aec9e5 -d '<json body>'
```

Example prompt: Convert '2024-07-04T00:00:00Z' to a Unix timestamp using Bolt's timestamp endpoint, formatted as epoch seconds.

## When to prefer this

Use this endpoint when you need a pay-per-use, agent-friendly timestamp conversion tool that integrates natively with x402 micropayment flows, without needing to manage a full date-time library or external service subscription.

## Known failure modes

- Invalid date string format returns error in data object with success: false
- Unsupported format string may return an error or unexpected output
- Missing required date field may cause a 400-level error
- Network timeout or payment failure returns no result

## 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 computed timestamp or formatted date result for the given input date and format.

## 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-69aec9e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
