Integrations
Most teams want compliance data to flow into the systems they already use. We expose a REST API and signed webhooks so any system that speaks HTTP can both push starters in and read status out. Pre-built integrations to the most common UK HR tools are on the roadmap.
Available now
Full read + write for workers, checks, evidence PDFs. Per-company bearer tokens. Docs โ
HMAC-signed POSTs to your callback URL on status changes, with retry + backoff.
Drop a spreadsheet, we read full_name / share_code / date_of_birth and optional sia_licence_number.
Daily digest and immediate fail alerts posted to a channel via incoming webhook URL.
Per-event email when a worker fails, has an amber share code, or a visa is expiring.
Coming soon
If your team uses one of these, let us know โ early-access slots fill demand-first:
Email support@instantcheck.co.uk with the tool name and how you'd use it. We prioritise build order by demand.
How to integrate today (without an off-the-shelf connector)
- Generate an API key from the Companies admin page (read, write or webhooks scopes).
- Point your HRIS' new-starter webhook at
POST /api/v1/workerswith full_name, share_code and date_of_birth. - Register a webhook at
POST /api/v1/webhookspointing at your rota planner's intake endpoint, listening forworker.status_changed. - For payroll, set up a daily call to
GET /api/v1/workersand filter for any worker whose RTW status is OK before paying them.
Full code examples on the API documentation page.