# Numora Hash Generation Endpoint

> Numora Hash Generation Endpoint is a paid API for AI agents from numorapoi.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Generates a cryptographic or mathematical hash from an input string using a specified algorithm

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/generate/hash
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-hash-generation-endpoint-5aa283d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fd_wxMztCiSOm_KwdXkrW

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 numora-hash-generation-endpoint-5aa283d3 -d '<json body>'
```

Example prompt: Generate a SHA256 hash of the string 'hello world' using Numora's hash endpoint — I need the deterministic hash value with no external dependencies.

## When to prefer this

Choose this endpoint when you need a lightweight, dependency-free hash computation with x402 micropayment support on Base, and don't want to spin up a full cryptographic library or external service. Best for AI agents needing on-demand hash generation within a math-focused API ecosystem.

## Known failure modes

- Missing required 'input' field returns an error response
- Unsupported algorithm value may produce an error or fall back to a default
- Malformed request body causes a 400-level error
- Payment failure via x402 micropayment results in 402 Payment Required
- Empty string input may return a valid hash of empty input or an error depending on implementation

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with success=true, a result object containing the computed hash value, and a human-readable computation description explaining what was hashed and how.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string"
  },
  "algorithm": {
   "enum": [
    "djb2",
    "fnv1a",
    "murmur"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-hash-generation-endpoint-5aa283d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numorapoi.orbonomy.xyz](https://www.zero.xyz/host/numorapoi.orbonomy.xyz/llms.txt)
