# Bolt Hash Endpoint

> Bolt Hash Endpoint 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-15).

Computes a cryptographic hash of input text using a specified algorithm

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/hash
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-hash-endpoint-846d5c6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-tfPPdWunQh-0NeI5x6V5

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-hash-endpoint-846d5c6d -d '<json body>'
```

Example prompt: Hash the text 'hello world' using SHA-256 and give me the digest.

## When to prefer this

Use this endpoint when you need a quick, pay-per-use cryptographic hash computation without setting up a local hashing library, or when operating in an agent environment that prefers remote utility microservices billed per call in USDC.

## Known failure modes

- Missing required 'text' field returns an error response
- Unsupported or invalid algorithm name may return failure
- Empty string input may produce an error or empty hash
- Malformed JSON body causes a 400-level error
- Payment not sent or invalid USDC payment triggers 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

A JSON object with a 'success' boolean and a 'data' object containing the computed hash digest of the input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "algorithm": {
   "enum": [
    "md5",
    "sha1",
    "sha256",
    "sha512",
    "sha384",
    "sha224"
   ],
   "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-hash-endpoint-846d5c6d/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)
