# Bolt Random String Generator

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

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

## Facts

- Endpoint: POST https://deltadata.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-6c6293dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HyQDPmbK_p64y_bn4PzX4

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

Example prompt: Generate a random 32-character hex-encoded string for me to use as a session token.

## When to prefer this

Prefer this endpoint when you need a quick, pay-per-use random string generation without standing up your own infrastructure, especially in agent workflows that already use x402 USDC micropayments and need strings in a specific encoding like hex or base64.

## Known failure modes

- Invalid encoding type returns an error
- Length parameter missing or non-integer causes a bad request
- Payment not included or insufficient USDC causes 402 Payment Required
- Server errors may return a failed success flag with empty data
- Negative or zero length value 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 generated random string in the requested length and encoding.

## 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-6c6293dd/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)
