Developer API
Access Nexus Intelligence briefings programmatically. Build trading dashboards, portfolio tools, fintech apps, and alert systems on top of daily AI-powered market analysis.
All requests require an API key passed as a Bearer token in the Authorization header.
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.
// 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 summaryimport 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 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