# Numora Fibonacci Sequence Generator

> Numora Fibonacci Sequence Generator is a paid API for AI agents from numomo.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Generates the first N numbers of the Fibonacci sequence as a pure math computation with zero external dependencies

## Facts

- Endpoint: POST https://numomo.vercel.app/api/generate/fibonacci
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-fibonacci-sequence-generator-69d07626
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1y-wPhsKtTfSyLHlJQTf

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

Example prompt: Can you generate the first 20 numbers of the Fibonacci sequence for me?

## When to prefer this

Choose this endpoint when you need a deterministic, server-side Fibonacci sequence computation with no external data dependencies, especially in contexts where you want verifiable pure math results without implementing the logic yourself. Ideal for AI agents that need Fibonacci sequences on demand for mathematical, financial, or algorithmic tasks via a simple pay-per-call micropayment model.

## Known failure modes

- Missing required parameter 'n' returns a validation error
- Non-integer or negative value for 'n' may return an error or unexpected result
- Very large values of 'n' may hit computation or response size limits
- Payment failure via x402 micropayment protocol blocks the request
- Network timeout on Vercel 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 'success' boolean, a 'result' object containing the generated Fibonacci sequence (array of N integers starting from the beginning of the sequence), and a 'computation' string describing in human-readable form what was computed.

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