# Bolt Random String Generator

> Bolt Random String Generator is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates a random string of a specified length and encoding

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/random-string
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-random-string-generator-d0328c87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iGtw5_DgShz3sNIzntuIj

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

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

## When to prefer this

Use this endpoint when you need a randomly generated string of a specific length and encoding (e.g., hex, base64, alphanumeric) for use as tokens, nonces, salts, or identifiers, and you want to pay per request via USDC without managing your own random generation infrastructure.

## Known failure modes

- Invalid encoding type specified — returns error or unexpected output
- Length value out of range or non-integer — may return 400 or validation error
- Missing required fields — success: false with error message
- Server-side generation failure — success: false

## 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 operation completed successfully.

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