Skip to content
GET /v1/mfi

Money Flow Index (volume-weighted RSI)

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/volumeindicators-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/volumeindicators-api/v1/mfi" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volumeindicators-api/v1/mfi", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volumeindicators-api/v1/mfi");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/volumeindicators-api/v1/mfi",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "mfi": 100,
        "note": "Money Flow Index = volume-weighted RSI over the period; raw money flow = typical price x volume. >=80 overbought, <=20 oversold.",
        "period": 14,
        "signal": "overbought",
        "source": "VOLUME",
        "candles": 22,
        "negative_money_flow": 0,
        "positive_money_flow": 3972966.6667
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:59.797Z",
        "request_id": "3031a514-85be-4403-8a9e-92ec86bfc14f"
    },
    "status": "ok",
    "message": "MFI computed",
    "success": true
}