DDDailyDog/ API docs

Contractors' back offices, expediters

Monitor your own docket and reopen windows

Two clocks matter on a docket: upcoming hearings (miss one and the maximum penalty locks in) and the 75-day reopen windows on recent defaults (the one free do-over — real money).

1. Watch for upcoming hearings

`hearingAfter=` with today's date lists everything on the calendar:

bash
curl "https://www.dailydog.ai/api/v1/contractors/test-titan-construction/tickets?hearingAfter=2026-07-21" \
  -H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"

2. Catch live reopen windows

`reopenableOnly=true` returns defaults whose window is still open, each with `reopenableUntil` — the last day a new-hearing request is auto-granted. `dueCents − soughtCents` is what vacating the default erases outright:

bash
curl "https://www.dailydog.ai/api/v1/contractors/test-titan-construction/tickets?reopenableOnly=true" \
  -H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"

3. Poll for new summonses

`since=` on the issue date makes the docket pollable — run it daily with your last check:

bash
curl "https://www.dailydog.ai/api/v1/contractors/test-titan-construction/tickets?since=2026-07-01" \
  -H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"

Ready to run this against real records? Contact us for a key — custom pricing, sized to your volume.