/v1/raise
Pay raise calculator
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/payroll-api/v1/raise" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/payroll-api/v1/raise", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/payroll-api/v1/raise");
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/payroll-api/v1/raise",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Apply the same to gross pay at any period (annual, monthly, hourly).",
"input": {
"current": 52000
},
"new_salary": 54600,
"increase_amount": 2600,
"increase_percent": 5
},
"meta": {
"timestamp": "2026-06-03T17:42:00.019Z",
"request_id": "d2452992-17ee-4b2a-9a61-747558b802a1"
},
"status": "ok",
"message": "Raise calculator",
"success": true
}