# Bolt Random String Generator

> Bolt Random String Generator 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).

Generates a random string of a specified length and encoding via pay-per-request API

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/random-string
- 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-random-string-generator-860af620
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jSy7bN-PyxVSIDLGsfAOB

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-random-string-generator-860af620 -d '<json body>'
```

Example prompt: Generate a random string that's 32 characters long using hex encoding.

## When to prefer this

Use this endpoint when you need a simple, on-demand random string with configurable length and encoding, billed per-call via USDC x402 payment, and want a utility toolkit approach rather than building randomness logic yourself.

## Known failure modes

- Invalid encoding type returns error in data field with success: false
- Missing or non-integer length parameter causes validation error
- Payment failure via x402 protocol blocks request
- Negative or zero length value may return error or empty string
- Very large length values may be rejected or timeout

## 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 'data' field containing the generated random string and a 'success' boolean indicating whether the request succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "length": {
   "type": "integer"
  },
  "encoding": {
   "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-random-string-generator-860af620/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)
