Naar de inhoud
GET /v1/pip-value

Pip value in the account currency

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/fxcalculator-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/fxcalculator-api/v1/pip-value" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxcalculator-api/v1/pip-value", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxcalculator-api/v1/pip-value");
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/fxcalculator-api/v1/pip-value",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "pair": "EUR/USD",
        "units": 100000,
        "source": "ECB (Frankfurter)",
        "lot_size": 1,
        "pip_size": 0.0001,
        "pip_value": 10,
        "rates_date": "2026-06-10",
        "account_currency": "USD",
        "pip_value_per_standard_lot": 10
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:38.355Z",
        "request_id": "015bd5ed-6d1a-42d8-b846-667f086a3670"
    },
    "status": "ok",
    "message": "Pip value computed",
    "success": true
}