added
Added Salary Estimates API
1 day ago
Added new endpoints to calculate reasonable salaries for S Corporation owner-employees using Bureau of Labor Statistics (BLS) data. The following endpoints are now available:
- GET /v1/salary_estimates/occupations: Search BLS occupation database by name and description
- POST /v1/employees/{employee_uuid}/salary_estimates: Create new salary estimate with annual net revenue, ZIP code, and occupations
- GET /v1/salary_estimates/{estimate_uuid}: Retrieve existing salary estimate with calculation results
- PUT /v1/salary_estimates/{estimate_uuid}: Modify estimate parameters before acceptance
- POST /v1/salary_estimates/{estimate_uuid}/accept: Accept estimate to create immutable audit documentation
See our guide for estimating reasonable salaries, or read more about the new endpoints.
Example
Hereβs an example response to calling POST /v1/employees/{employee_uuid}/salary_estimates:
{
"zip_code": "91104",
"occupations": [
{
"code": "111021",
"experience_level": "expert",
"primary": true,
"time_percentage": 1.0
}
],
"annual_net_revenue": "100000.0"
}