# Bolt JSON Format Converter

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

Parses and reformats a raw JSON string into a structured object, optionally with custom indentation.

## Facts

- Endpoint: POST https://deltadata.orbonomy.xyz/api/json-format
- 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-json-format-converter-d0a64964
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BN8d7ydwXFi-obsX6D4E8

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-json-format-converter-d0a64964 -d '<json body>'
```

Example prompt: Can you parse and format this raw JSON string for me with 4-space indentation: '{"name":"Alice","age":30,"roles":["admin","user"]}'?

## When to prefer this

Use this endpoint when you need to programmatically parse a raw JSON string into a structured object or reformat it with specific indentation, especially in an agent workflow that pays per request in USDC via x402 and needs a lightweight, reliable JSON conversion step.

## Known failure modes

- Invalid JSON string input causes parsing failure and success:false
- Missing required 'json' field returns an error response
- Malformed JSON with syntax errors (unclosed brackets, bad escaping) fails to parse
- Non-string value passed as 'json' field may be rejected

## 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 parsed and reformatted JSON structure derived from the input string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "json"
 ],
 "properties": {
  "json": {
   "type": "string"
  },
  "indent": {
   "type": "integer"
  }
 }
}
```

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