Business

SLA Due API

Calculate SLA and business-day due dates with holidays, working hours, and time zones.

First call

Start with a realistic request you can inspect.

curl -X POST 'https://sla-due-api.linkridge.net/v1/business-days/calculate' \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: <your-api-key>' \
  -d '{
  "operation": "sla_due_at",
  "calendar": "us-federal",
  "timezone": "America/Chicago",
  "start_at": "2026-07-02T16:00:00",
  "minutes": 180
}'

Prefer marketplace auth? Open in RapidAPI for plans, keys, and interactive testing.

Example response

{
  "operation": "sla_due_at",
  "calendar": "us-federal",
  "timezone": "America/Chicago",
  "start_at": "2026-07-02T16:00:00-05:00",
  "minutes": 180,
  "due_at": "2026-07-06T11:00:00-05:00",
  "business_minutes_added": 180
}