/v1/pip-value
Pip value in the account currency
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}