/v1/pip-value
Pip value in the account currency
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}