DEV Community

ImmigrationGPT
ImmigrationGPT

Posted on

UK Points-Based Immigration 2026: How the Route Architecture Actually Works, and Where Eligibility Logic Breaks Down

UK Points-Based Immigration 2026: How the Route Architecture Actually Works, and Where Eligibility Logic Breaks Down

The UK's points-based immigration system turned five years old this year, and the compliance tooling built around it is still making the same foundational mistakes. Not because the system is particularly complex — it isn't — but because the "points" framing creates a mental model that doesn't match how decisions are actually made.

Here's what's actually happening under the hood, and where automated eligibility checks tend to go wrong.

The Name Is Misleading

"Points-based" implies a scoring system where you accumulate points until you hit a threshold. That's not how most routes work. For the Skilled Worker visa — the main employment route — you need 70 points. But 50 of those points are mandatory and non-tradeable: sponsorship (20 points), skill level at RQF3 or above (20 points), and English language (10 points). The remaining 20 come from salary meeting the going rate for the SOC code.

In practice, that means the system is closer to a checklist with one variable criterion than a flexible points accumulation model. An applicant either has a sponsor or they don't. Either the role meets RQF3 or it doesn't. The salary either meets the going rate threshold or it doesn't. There's no partial credit, no compensating factors across those mandatory elements.

Compliance systems that model this as a flexible point trade-off will produce wrong results whenever they try to compensate a salary shortfall with other "points."

The Tradeable Points Are Narrower Than They Appear

The 20 tradeable points exist for situations where a role's salary falls below the going rate. Three scenarios allow a lower salary to still meet the threshold:

  • The applicant is a new entrant (typically under 26, in a graduate programme, or switching from a student visa): going rate reduced by 30%, minimum floor at £30,960
  • The role is on the shortage occupation list: going rate reduced by 20%
  • The role comes with a PhD relevant to the role: going rate reduced by 10% (or 20% for a STEM PhD in a shortage occupation)

These reductions can stack — but only in specific combinations. A new entrant in a shortage occupation role gets the larger of the two discounts, not both added together. Systems that add percentage reductions without checking for stacking rules will calculate incorrect floors.

The minimum salary threshold — currently £38,700 for most applicants — also operates as a hard floor beneath the going rate calculation. Even if the going rate for a role is lower than £38,700, the applicant must earn at least £38,700 unless an exception applies. Those exceptions (healthcare workers, new entrants, some education roles) each have their own floors that must be applied instead.

Route Switching Changes the Points Calculation

When an applicant switches from one route to another in-country, the points requirements don't change — but the evidence accepted to meet them can. Someone switching from a Student visa to a Skilled Worker visa is treated as a new entrant if they're within two years of their course end date, which shifts the applicable salary floor down by 30%.

HR systems that check right-to-work post-switch without updating the salary eligibility logic can end up validating roles that would actually fail a fresh application assessment. This becomes relevant when a company sponsors a switch applicant at a salary that's valid under new entrant rules, then the employee later seeks an extension or ILR — at which point new entrant status no longer applies and the salary may no longer meet the standard going rate.

Dependent Applications Add a Separate Layer

Points thresholds don't change with dependants, but the minimum salary requirement does — for some routes. Skilled Worker applicants must now meet an additional financial requirement when bringing dependants, tied to minimum income thresholds separate from the going rate logic. This threshold is entirely separate from the 70-point calculation and doesn't interact with it.

Eligibility checks that only run the points calculation and ignore the dependent financial requirement will return false positives for applicants trying to bring family members.

The Global Talent Route Has No Points at All

The Global Talent visa is consistently categorised as part of the points-based system, but it doesn't use a points threshold. It's endorsement-based: an approved body (Tech Nation successor, British Academy, Royal Society, etc.) assesses an application against their own criteria and issues or refuses endorsement. The Home Office then grants or refuses based on endorsement status.

Grouping this route with Skilled Worker in compliance logic is a category error. The data requirements, evidence types, and decision pathways are entirely different.

What Actually Matters for Compliance Systems

The reliable approach is to treat each route as a separate decision tree rather than a unified points model. For Skilled Worker specifically, the sequence is:

  1. Is there a valid sponsor licence (and is it not suspended or revoked)?
  2. Does the role meet RQF3?
  3. Does the applicant meet English language requirements?
  4. What is the SOC code going rate?
  5. Which salary floor applies (standard, new entrant, or shortage occupation)?
  6. Does the offered salary meet the applicable floor?
  7. Are there dependants? If yes, does the salary meet the separate dependant income threshold?

Steps 4 and 5 require current data — the going rate tables were revised in April 2024 and reflect updated ONS salary data, so any system using pre-2024 going rates is working from wrong numbers.

ImmigrationGPT covers the sponsor licence register, salary threshold lookups, and route eligibility checks with data sourced from GOV.UK. If you're building compliance tooling or just need to verify a specific scenario, it's worth cross-referencing against the live register rather than relying on cached snapshots.


This article is for informational purposes only. Immigration rules change and individual circumstances vary. Always consult a qualified immigration adviser for decisions affecting visa applications.

Top comments (0)