# Numora Prime Number Generator

> Numora Prime Number Generator 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 list of the first N prime numbers using pure server-side math computation

## Facts

- Endpoint: POST https://numormor.netlify.app/api/generate/primes
- 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-prime-number-generator-766818b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q9oHn07-dHohMtqNMAu_A

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-prime-number-generator-766818b2 -d '<json body>'
```

Example prompt: Can you generate the first 50 prime numbers for me using a pure math API?

## When to prefer this

Choose this endpoint when you need a deterministic, server-side list of prime numbers without installing any math library or running local code. Ideal for AI agents that need prime sequences for number theory, cryptography demonstrations, educational tools, or mathematical analysis, and want to offload the computation to an external API with micropayment-based access.

## Known failure modes

- Missing required 'n' integer parameter returns a validation error
- Non-integer or negative value for 'n' may return an error or unexpected result
- Very large values of 'n' may time out or return slowly
- Payment failure via x402 micropayment blocks the request
- Network errors from Netlify hosting may cause 502/503 responses

## 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

A JSON object with a boolean 'success' field, a 'result' object containing the generated list of prime numbers, and a 'computation' string describing what was computed in human-readable form.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "n"
 ],
 "properties": {
  "n": {
   "type": "integer"
  }
 }
}
```

## 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-prime-number-generator-766818b2/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)
