Right To Work Checker

Right to Work Checks Are Expanding to Gig, Agency and Platform Workers

From 1 October 2026, UK right-to-work checks stop being an employees-only requirement. Section 48 of the Border Security, Asylum and Immigration Act 2025 brings gig economy workers, agency workers, individual contractors and platform-based labour into scope for the first time. If your business relies on any of these, checking suddenly applies to people you may never have checked before, at a volume manual gov.uk lookups were never built for.

What changes on 1 October 2026

Section 48 extends the illegal working civil penalty regime beyond direct employment. According to law firm summaries of the Act, the newly in-scope categories include non-employees engaged under a worker's contract, individual contractors, agency workers, gig economy workers and platform-based service providers, and casual, temporary and zero-hours workers.

This does not make these people employees for employment-law purposes. It means the business that engages them, including a platform or agency further up the chain, can now face a civil penalty if it has not checked them.

Primary source: Border Security, Asylum and Immigration Act 2025, Section 48. As of this writing, gov.uk's own employer's right-to-work guide has not yet been updated to reflect it, so most current commentary comes from employment-law firms tracking the Act.

The penalty for getting it wrong

Civil penalties of up to £60,000 per illegal worker, with criminal exposure in serious cases, already apply to employees. From 1 October 2026 that exposure extends to the wider categories above, whether or not your business has run a right-to-work check on a non-employee before.

On the figures: £60,000 is the maximum for a repeat breach within three years. A first breach is capped lower, at £45,000 per worker. Both are set out in the Home Office's code of practice on illegal working penalties.

Why the manual gov.uk form won't scale to this

Gig and marketplace platforms, and staffing agencies placing workers with multiple end-clients, are exactly the businesses this extension targets, and exactly the businesses most likely to be onboarding people continuously rather than a handful of times a year. gov.uk still offers one route to check a share code: a human filling in a three-page form, one applicant at a time, with no bulk upload and no API.

POST /api/check turns that form into one HTTP call, so checking a new worker fits into the onboarding flow you already run them through instead of becoming a separate manual step for a population you've never had to screen before. See the full integration picture in the right to work check API guide.

Check before you need to, not after

Sandbox keys (rtw_test_…) return deterministic fixtures for every outcome, so you can build the check into your onboarding flow now and flip to a live key when you're ready, well ahead of 1 October.

const res = await fetch('https://checksharecode.co.uk/api/check', {
  method: 'POST',
  headers: {
    'content-type': 'application/json',
    authorization: 'Bearer rtw_test_...',
  },
  body: JSON.stringify({
    share_code: 'AB1CD2EF3',
    date_of_birth: '1990-01-01',
    company_name: 'Acme Gig Platform Ltd',
  }),
});

const data = await res.json();
// { outcome: 'ACCEPTED', name: 'JANE EXAMPLE DOE', conditions: [], reference: 'WE-EXAMPLE-12', ... }

Walk through a full integration in the Node.js quickstart or read the API docs.

This is not legal advice

We're not a law firm and this page isn't a substitute for legal advice. Whether a specific worker falls into the newly in-scope categories, and what your business needs to do about it, depends on facts we can't assess for you here. This page summarises publicly available commentary on Section 48 from employment-law firms so you know what to ask your own advisers about. What we can help with is the mechanical part: checking a share code programmatically, at whatever volume the new requirement turns out to mean for you.

Get started

The free tier covers 10 checks a month with no card required, enough to try the integration against your onboarding flow before you need it at volume. See pricing for paid tiers, or sign up to get a key.