HR & Payroll
Simplify Time Tracking Across Multiple Branches
Companies with branches across different cities struggle to manage local holidays. Our API centralizes everything automatically.
Overtime Calculation
Avoid paying 100% overtime improperly or failing to pay when required. The API reports exactly whether a day is a holiday at the employee’s location.
Automated Scheduling
Your software can automatically block meeting scheduling or work shifts on local municipal holidays.
Labor Law Compliance
Ensure your company complies with collective bargaining agreements and municipal labor laws without manual spreadsheets.
Practical Example
Your company has headquarters in São Paulo and a branch in Recife.
- January 25: Holiday only for the SP team (São Paulo City Anniversary)
- June 24: Holiday only for the Recife team (St. John’s Day)
// Check holiday for employee
const employee = {
city: "Recife",
uf: "PE"
};
const holidays = await api.get(
`/feriados/cidade/${ibge_recife}`
);
if (holidays.includes(today)) {
applyHolidayOvertimeRate();
}