# Numora Hash Generation Endpoint

> Numora Hash Generation Endpoint is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Generates a cryptographic hash of a given input string using a specified algorithm

## Facts

- Endpoint: POST https://numormor.netlify.app/api/generate/hash
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-hash-generation-endpoint-cd5362f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_izX8HektmZKYHagLa1A4H

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

Example prompt: Generate a SHA-256 hash of the string 'hello world' using Numora's pure math hash endpoint and return the result.

## When to prefer this

Prefer this endpoint when you need a simple, stateless, zero-dependency hash computation without setting up a local crypto library — especially useful in AI agent pipelines using x402 micropayments on Base and needing a quick deterministic hash of a string with a selectable algorithm.

## Known failure modes

- Missing required 'input' field returns 400 error
- Unsupported algorithm name causes computation failure
- Empty input string may produce empty or error result
- Payment failure via x402 micropayment returns 402 status
- Network timeout from Netlify serverless cold start

## 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 a boolean success field, a result object containing the computed hash value, and a human-readable computation description string explaining what was computed.

## 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-cd5362f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
