Calculators
Offer acceptance rate calculator API
Compute offer acceptance rate = (offers accepted / offers extended) x 100, with decline rate and a poor/fair/good/excellent rating. Deterministic recruiting-funnel math. Answers 'what's our offer acceptance rate','decline rate on offers','OAR for 17 of 20 accepted'.
Price$0.01per request
MethodPOST
Route/v1/calc/hr-offer-acceptance-rate
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrrecruitingofferacceptance-ratetalentcalchiringfunnel
API URL
Integration docshttps://x402.hexl.dev/v1/calc/hr-offer-acceptance-rateExample request
{
"offersAccepted": 17,
"offersExtended": 20
}Example response
{
"offersAccepted": 17,
"offersExtended": 20,
"acceptanceRate": 85,
"declineRate": 15,
"rating": "good"
}Input schema
{
"type": "object",
"required": [
"offersAccepted",
"offersExtended"
],
"properties": {
"offersAccepted": {
"type": "number",
"description": "Offers accepted",
"examples": [
17
]
},
"offersExtended": {
"type": "number",
"description": "Offers extended",
"examples": [
20
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}