# Ni Biashara Cloud Spend Report

> Ni Biashara Cloud Spend Report is a paid API for AI agents from agents.nibiashara.biz, paid per call via x402, $0.99/call, status unknown (last checked 2026-09-15).

Analyzes a cloud billing export (CSV/JSON URL) and returns a structured cost report, with result released upon payment settlement.

## Facts

- Endpoint: GET https://agents.nibiashara.biz/shelf/cloud-spend-report
- Price: $0.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ni-biashara-cloud-spend-report-1bff1287
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D99Z-4Gvn-yPGEFoVK3g6

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 ni-biashara-cloud-spend-report-1bff1287
```

Example prompt: Can you run a cloud spend report on my billing export at https://mybucket.example.com/export/billing-june.csv and tell me how much I'm spending and where?

## When to prefer this

Choose this endpoint when you have a cloud billing export (CSV or JSON) hosted at a reachable HTTPS URL and want a structured cost report computed per-call with pay-as-you-go USDC pricing. Prefer it over manual analysis or self-hosted tooling when you need quick, automated cloud spend insights without committing to a subscription.

## Known failure modes

- Missing or invalid source_url parameter returns an error
- Source URL is not HTTPS or exceeds 10MB file size limit
- URL is unreachable or returns a non-200 response
- File format is not recognized as CSV or JSON
- Payment not settled so full report remains withheld
- Malformed billing data results in incomplete computation

## How this service works

Structured African-currency FX data (official + parallel/street rates from live P2P order books, with history) and business services (Swahili localization, design, consulting, landing pages), sold per call to AI agents. Ni Biashara LLC, Dallas TX.

## Output

Returns a JSON object with a status field ('intake_received'), a computation message indicating the report has been computed and is held pending payment, and a balance_due_usd field showing the dollar amount owed before the report is released.

## 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": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "source_url"
     ],
     "properties": {
      "source_url": {
       "type": "string",
       "format": "uri",
       "description": "HTTPS URL of your billing export, CSV/JSON, ≤10MB (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "intake_received",
  "computation": "Report computed and held; releases on balance.",
  "balance_due_usd": 48.01
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ni-biashara-cloud-spend-report-1bff1287/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.nibiashara.biz](https://www.zero.xyz/host/agents.nibiashara.biz/llms.txt)
