# Ni Biashara — USD/NGN Parallel (Street) FX Rate

> Ni Biashara — USD/NGN Parallel (Street) FX Rate is a paid API for AI agents from agents.nibiashara.biz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the live Nigerian Naira street/parallel-market exchange rate vs USD, alongside the official rate and the percentage spread between them, derived from live P2P order books.

## Facts

- Endpoint: POST https://agents.nibiashara.biz/api/parallel/USD-NGN
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ni-biashara-usd-ngn-parallel-street-fx-rate-84f5f2aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CpQN23Brurjhi4jts3MCL

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-usd-ngn-parallel-street-fx-rate-84f5f2aa -d '<json body>'
```

Example prompt: What's the current street (parallel) exchange rate for USD to Nigerian Naira, and how big is the spread vs the official CBN rate right now?

## When to prefer this

Choose this endpoint when you need the real-world street or informal-market exchange rate for USD/NGN, not just the official central bank rate — especially for remittance planning, P2P trading, arbitrage detection, or FX risk assessment in Nigeria. Prefer this over official-rate-only endpoints when the gap between official and parallel rates is material to a decision.

## Known failure modes

- Insufficient P2P order book depth may yield a low-confidence or stale rate
- If P2P markets are inactive, the parallel rate may not reflect real-time conditions
- Payment failure (x402) if the $0.01 USDC micro-payment is not completed
- Currency pair not supported will return an error response
- Network timeout if order book data source is temporarily unavailable

## How this service works

Street (parallel-market) FX rate for a West African currency vs USD, derived from live P2P order books, with the official rate and the spread between them

## Output

A JSON object containing: the currency pair (USD-NGN), the parallel-market mid-rate (e.g. 1389.1), the official rate (e.g. 1345.2), the spread percentage between the two (e.g. 3.26%), the P2P order book depth in USD used to derive the rate (e.g. $2000), and a confidence level string (e.g. 'medium').

## Response schema (JSON Schema)

```json
{
 "pair": "USD-NGN",
 "depth_usd": 2000,
 "confidence": "medium",
 "spread_pct": 3.26,
 "parallel_mid": 1389.1,
 "official_rate": 1345.2
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ni-biashara-usd-ngn-parallel-street-fx-rate-84f5f2aa/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)
