GC marketplaces, sureties, trade-credit desks
Vet a contractor before you hire
A contractor's enforcement docket is a credit signal: defaults park judgments on their customers' buildings, and $25K+ outstanding can freeze DOB permits on every lot they work.
1. Find the company
Search by name — the slug that comes back is the company's id across the API:
bash
curl "https://www.dailydog.ai/api/v1/contractors/search?q=titan" \
-H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"2. Read the profile
`finesDueCents`, `defaultedHearings`, and `openTickets` are the underwriting facts; `riskLevel` folds them into one grade:
bash
curl "https://www.dailydog.ai/api/v1/contractors/test-titan-construction" \
-H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"3. Screen the whole bid list
Up to 25 companies per call:
bash
curl -X POST "https://www.dailydog.ai/api/v1/contractors/batch" \
-H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985" \
-H "Content-Type: application/json" \
-d '{"slugs": ["test-titan-construction", "test-clean-slate-contracting"]}'Ready to run this against real records? Contact us for a key — custom pricing, sized to your volume.