# Numora Fibonacci Sequence Generator

> Numora Fibonacci Sequence Generator 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 the first N numbers of the Fibonacci sequence using pure server-side computation with no external dependencies

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/generate/fibonacci
- 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-fibonacci-sequence-generator-8eba9c69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OZA-9WmbWZsmR-Z4H2o22

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-8eba9c69 -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 Fibonacci sequence computation with no dependencies, especially when paying per-call via x402 micropayments on Base is acceptable and you want a reliable JSON-formatted sequence result. Prefer over rolling your own when you need auditability or when the agent cannot execute local code.

## Known failure modes

- Missing required field 'n' returns a 400 validation error
- Non-integer or negative value for n may return a 422 or error response
- Extremely large n values may cause timeout or memory issues
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Network issues with the orbonomy.xyz domain may cause connection failures

## 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 generated Fibonacci sequence array, and a human-readable computation string describing what was computed (e.g. 'Generated first 30 Fibonacci numbers').

## 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-8eba9c69/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)
