Plus234Feed

API docs

Build with the Plus234Feed Intel API.

Use a simple API key header to access Nigerian market, macro, policy, NBS, civic, and public-data endpoints.

Live API response

/v1/rates/usd

200 OK

API status

Live

API base

intel-api.plus234feed.com

Auth

X-API-Key

Envelope

v1

{
  "data": { "currency": "USD", "rate": 1326.0192 },
  "source": { "name": "Central Bank of Nigeria" },
  "freshness": { "status": "fresh" }
}

Quick start

Fetch the latest official USD/NGN rate.

Replace pfi_your_key with your assigned API key.

curl -H "X-API-Key: pfi_your_key" \
  https://intel-api.plus234feed.com/v1/rates/usd
const res = await fetch("https://intel-api.plus234feed.com/v1/rates/usd", {
  headers: { "X-API-Key": process.env.PLUS234FEED_INTEL_KEY }
});

const payload = await res.json();
console.log(payload.data.rate);

Example response

{
  "data": {
    "currency": "USD",
    "rate": 1326.0192,
    "rate_date": "2026-09-11"
  },
  "meta": {
    "request_id": "req_...",
    "version": "v1",
    "dataset": "cbn_exchange"
  },
  "source": {
    "name": "Central Bank of Nigeria"
  },
  "freshness": {
    "status": "fresh",
    "data_period": "2026-09-11"
  }
}

Endpoint reference

Available endpoints.

These are the endpoints currently available through the Intel service.

Rates

Official exchange-rate endpoints with freshness and source metadata.

GET/v1/rates/usd

Latest official USD/NGN rate

GET/v1/rates/all

Latest available exchange-rate records

GET/v1/rates/history?currency=USD&limit=30

Historical records

Inflation and policy

Inflation, MPR, and treasury bill auction data.

GET/v1/inflation/latest

Latest inflation record

GET/v1/inflation/history?limit=24

Inflation history

GET/v1/mpr/latest

Latest monetary policy indicators

GET/v1/mpr/ntb/latest

Latest NTB auction result

Markets

NGX and commodities endpoints for market products.

GET/v1/markets/ngx/snapshot

Latest NGX market snapshot

GET/v1/markets/ngx/movers

Top gainers, losers, and trades

GET/v1/markets/ngx/ticker/GTCO

Single ticker lookup

GET/v1/commodities/latest

Latest commodity prices

Macro, NBS, and civic

Packaged national data for dashboards, research, and internal tools.

GET/v1/macro/snapshot

Packaged macro intelligence payload

GET/v1/nbs/status

NBS dataset inventory and freshness

GET/v1/states

Nigerian state records

GET/v1/officials/senators

Senate records from NASS ingest

Need a key for integration testing?

Tell us your use case and the datasets you need. We will provision an API key and onboarding notes.

Request access