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
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/usdconst 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.
/v1/rates/usdLatest official USD/NGN rate
/v1/rates/allLatest available exchange-rate records
/v1/rates/history?currency=USD&limit=30Historical records
Inflation and policy
Inflation, MPR, and treasury bill auction data.
/v1/inflation/latestLatest inflation record
/v1/inflation/history?limit=24Inflation history
/v1/mpr/latestLatest monetary policy indicators
/v1/mpr/ntb/latestLatest NTB auction result
Markets
NGX and commodities endpoints for market products.
/v1/markets/ngx/snapshotLatest NGX market snapshot
/v1/markets/ngx/moversTop gainers, losers, and trades
/v1/markets/ngx/ticker/GTCOSingle ticker lookup
/v1/commodities/latestLatest commodity prices
Macro, NBS, and civic
Packaged national data for dashboards, research, and internal tools.
/v1/macro/snapshotPackaged macro intelligence payload
/v1/nbs/statusNBS dataset inventory and freshness
/v1/statesNigerian state records
/v1/officials/senatorsSenate 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.

