# Numora Fibonacci Sequence Generator

> Numora Fibonacci Sequence 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 Fibonacci sequence of the specified length using pure server-side math computation, with no external dependencies

## Facts

- Endpoint: POST https://numormor.netlify.app/api/generate/fibonacci
- 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-fibonacci-sequence-generator-11815e55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7cwl4lBDEeRVxwH5GmudM

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-fibonacci-sequence-generator-11815e55 -d '<json body>'
```

Example prompt: Can you generate the first 30 Fibonacci numbers for me?

## When to prefer this

Choose this endpoint when you need a pure server-side computation of the Fibonacci sequence with no external API dependencies, want a deterministic mathematical result, and are operating within an x402 micropayment-enabled agent environment on Base. Prefer this over LLM-generated math when you need guaranteed correctness and structured output.

## Known failure modes

- Missing required 'n' parameter returns 400 error
- Non-integer or negative 'n' value may return validation error
- Very large 'n' values may cause timeout or overflow
- Payment not provided or insufficient USDC triggers 402 Payment Required

## 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 'success' boolean, a 'result' object containing the Fibonacci sequence array, and a 'computation' string describing what was calculated (e.g. 'Generated 30 Fibonacci numbers starting from 0').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "n"
 ],
 "properties": {
  "n": {
   "type": "integer",
   "description": "Count of numbers"
  }
 }
}
```

## 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-fibonacci-sequence-generator-11815e55/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)
