Calculators
Pay raise impact calculator API
Translate a raise (given as percent or dollar amount) into the new salary plus monthly and per-paycheck increases, deriving whichever of percent/amount you omit. Deterministic comp math. Answers 'what's a 5% raise on $80k worth','how much more per paycheck','what raise gets me to $84k'.
Price$0.01per request
MethodPOST
Route/v1/calc/hr-raise-impact
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrcompensationraisesalarymeritcalcpayincrease
API URL
Integration docshttps://x402.hexl.dev/v1/calc/hr-raise-impactExample request
{
"currentSalary": 80000,
"raisePercent": 5
}Example response
{
"currentSalary": 80000,
"raisePercent": 5,
"raiseAmount": 4000,
"newSalary": 84000,
"monthlyIncrease": 333.33,
"perPeriodIncrease": 153.85,
"payPeriodsPerYear": 26
}Input schema
{
"type": "object",
"required": [
"currentSalary"
],
"properties": {
"currentSalary": {
"type": "number",
"description": "Current annual salary in dollars",
"examples": [
80000
]
},
"raisePercent": {
"type": "number",
"description": "Raise as a percent (e.g. 5 for 5%)",
"examples": [
5
]
},
"raiseAmount": {
"type": "number",
"description": "Raise as a dollar amount (alternative to percent)",
"examples": [
4000
]
},
"payPeriodsPerYear": {
"type": "number",
"default": 26,
"examples": [
26
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}