# Agent Micro Fibonacci Calculator

> Agent Micro Fibonacci Calculator is a paid API for AI agents from agent-micro.annushka1190.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Computes Fibonacci numbers for a given integer input, returning the result as JSON, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://agent-micro.annushka1190.workers.dev/v1/math/fibonacci
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-micro-fibonacci-calculator-9d460513
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j5e5_4lb3-dX1SJUSS4VL

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 agent-micro-fibonacci-calculator-9d460513
```

Example prompt: Calculate the Fibonacci number at position 15 for me using the agent-micro math tool.

## When to prefer this

Use this endpoint when an AI agent needs a quick, trustless, pay-per-use Fibonacci computation without running local math code or depending on a general-purpose compute environment. Ideal for agents that want deterministic math results at fractions of a cent per call.

## Known failure modes

- Missing or invalid 'n' query parameter returns an error
- Non-integer or negative index may return an error or unexpected result
- Payment failure via x402 protocol blocks the request
- Rate limiting or worker timeout for very large Fibonacci indices

## How this service works

Advanced micro-tools for AI agents: cryptographic randomness, text analysis, math helpers, date arithmetic, web metadata, and IP intelligence. All under $0.01 per request, paid in USDC via x402.

## Output

Returns a JSON object with an 'ok' boolean and the computed Fibonacci value for the given input index. Response is fast and suitable for inline agent computation steps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-micro-fibonacci-calculator-9d460513/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-micro.annushka1190.workers.dev](https://www.zero.xyz/host/agent-micro.annushka1190.workers.dev/llms.txt)
