Developer API

Market intelligence,
delivered as data.

Access Nexus Intelligence briefings programmatically. Build trading dashboards, portfolio tools, fintech apps, and alert systems on top of daily AI-powered market analysis.

JSON APIREST1,000 req/dayFree + Premium content11 regional editions

Authentication

All requests require an API key passed as a Bearer token in the Authorization header.

bash
curl https://nexusmarketintel.com/api/v1/briefing \
  -H "Authorization: Bearer nxi_live_your_key_here"

Never put your API key in a URL — only use the Authorization header. URL query params appear in server logs and browser history.

Endpoints

Code Examples

javascript
// Node.js / fetch
const response = await fetch('https://nexusmarketintel.com/api/v1/briefing', {
  headers: {
    'Authorization': 'Bearer nxi_live_your_key_here',
  },
})

const { content, metadata } = await response.json()
console.log(content.free)    // free briefing text
console.log(content.premium) // premium with trade setups
console.log(content.regional.nigeria) // Nigeria market summary
python
import requests

headers = {'Authorization': 'Bearer nxi_live_your_key_here'}

# Today's briefing
r = requests.get('https://nexusmarketintel.com/api/v1/briefing', headers=headers)
briefing = r.json()

print(briefing['content']['free'])
print(briefing['content']['regional']['nigeria'])

# Specific date
r = requests.get('https://nexusmarketintel.com/api/v1/briefing/2026-05-20', headers=headers)
print(r.json()['content']['premium'])

Rate Limits

1,000
Requests per day
00:00 UTC
Daily reset time

Rate limit headers are included in every response: X-RateLimit-Limit, X-RateLimit-Remaining. When exceeded, you'll receive a 429 Too Many Requests response.

API Access

₦50,000
/month
Full free + premium briefing content
All 11 regional market summaries
1,000 API requests per day
Historical briefings archive
JSON format — ready to parse
API key delivered instantly
Email support

Pay via Paystack · Any Nigerian card · Key sent instantly

Built for

📱 Trading apps & dashboards
🤖 Trading bots & alert systems
📊 Portfolio management tools
🏦 Fintech products
📰 Financial news aggregators
🎓 Research & analysis tools