Public endpoints for accessing African sovereignty intelligence data. All endpoints are free, require no authentication, and return JSON (except RSS and OG image).
https://axis-mocha.vercel.app/api/public/scoresReturns sovereignty scores for all 54 African nations. Includes axisScore, status, key resources, and sub-indices.
curl -s https://axis-mocha.vercel.app/api/public/scores | jq .
{
"success": true,
"count": 54,
"data": [
{
"country": "NGA",
"name": "Nigeria",
"axisScore": 68,
"status": "IMPROVING",
"infrastructureControl": 55,
"policyIndependence": 60,
"currencyStability": 45,
"resourceWealth": 92,
"keyResources": ["Oil", "Gas", "Tin"]
}
]
}/api/commoditiesAfrican-relevant commodity benchmark prices. Includes gold, copper, cobalt, lithium, and bauxite with source attribution and update frequency.
curl -s https://axis-mocha.vercel.app/api/commodities | jq .
{
"success": true,
"data": [
{
"id": "gold",
"name": "GOLD (SPOT)",
"price": 3250,
"unit": "OZ",
"currency": "USD",
"trend": 0.45,
"source": "LBMA / Kitco",
"frequency": "daily",
"lastUpdated": "2025-01-15"
}
]
}/feed.xmlRSS 2.0 feed of intelligence alerts from the AXIS Africa monitoring system. Subscribe in any RSS reader.
curl -s https://axis-mocha.vercel.app/feed.xml | head -20
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>AXIS Africa Intelligence Feed</title>
<item>
<title>[HIGH] Gold reserves policy shift — GHA</title>
<description>Ghana announces new gold reserve requirements...</description>
</item>
</channel>
</rss>/api/ogDynamic Open Graph image generation. Use query params to customize social preview cards.
curl -s "https://axis-mocha.vercel.app/api/og?country=Nigeria&score=86&status=OPTIMAL" -o preview.png
Returns a 1200×630 PNG image for social media cards.
/embed/{COUNTRY_CODE}Embeddable country sovereignty card. Use in an iframe for external sites.
# Use in HTML: <iframe src="https://axis-mocha.vercel.app/embed/NGA" width="400" height="280" />
Returns an HTML page with a compact country card.
AXIS AFRICA — OPEN SOURCE INTELLIGENCE INFRASTRUCTURE