Skip to main content

Indices

GET /v1/indices

Composite indices tracking African crypto market activity.

Access: Builder, Professional, Enterprise. Free tier returns 403.

Parameters

ParameterTypeRequiredDescription
indexstringNoFilter to a single index (MXNCI or ACLI).

Indices

  • MXNCI -- Moxie Nigerian Crypto Index. Weighted composite: BTCNGN (60%), ETHNGN (25%), USDTNGN (15%).
  • ACLI -- African Crypto Liquidity Index. 24-hour aggregate trading volume across all pairs.

Example

curl "https://api.moxiemetrx.com/v1/indices" \
-H "X-API-Key: your_key"
{
"indices": {
"MXNCI": {
"index_name": "MXNCI",
"value": 56237591.73,
"change_24h": null,
"change_pct_24h": null,
"components": {
"BTCNGN": {"price": 92541802.0, "weight": 0.6},
"ETHNGN": {"price": 2849207.0, "weight": 0.25},
"USDTNGN": {"price": 1391.88, "weight": 0.15}
},
"timestamp": "2026-04-03T01:40:00+00:00"
},
"ACLI": {
"index_name": "ACLI",
"value": 0.0,
"change_24h": null,
"change_pct_24h": null,
"components": {},
"timestamp": "2026-04-03T01:40:00+00:00"
}
},
"timestamp": "2026-04-03T01:44:41.756282+00:00"
}

Each index contains value, change_24h, change_pct_24h, a components map (pair to price + weight), and a timestamp.