# Bolt Random String Generator

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

Generates a random string of a specified length and encoding via the Bolt utility toolkit

## Facts

- Endpoint: POST https://datault.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-26e7e5c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jt63wZ5LS9fGp9389AjX_

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

Example prompt: Generate a random 24-character base64 string for me.

## When to prefer this

Use this endpoint when you need a server-side cryptographically random string of a specific length and encoding (e.g. hex, base64, alphanumeric) without implementing your own RNG, especially in agent workflows requiring unique tokens, nonces, or test data.

## Known failure modes

- Invalid encoding type returns error
- Length value out of acceptable range returns error
- Missing required fields returns validation error
- Payment failure returns 402 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 'data' field containing the generated random string and a 'success' boolean indicating whether the operation 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-26e7e5c2/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)
