The Graduate Route is the mechanism UK universities and employers expect international students to use after graduation. For HR teams and developers building compliance tools, understanding its timing model, work right rules, and absence tracking is operationally important — especially when managing recent graduates approaching their Skilled Worker switch.
Route Classification
The Graduate visa is an in-country switching route: it can only be applied for from inside the UK, while the applicant holds a valid Student visa. There is no equivalent entry clearance category.
Key identifiers:
- Visa type: Student → Graduate (in-country switch only)
- Duration: 2 years standard, 3 years for doctoral qualifications
- Sponsor requirement: None
- Salary threshold: None
- Occupation restriction: None
Application Timing Logic
The application window is bounded at the top by Student visa expiry. There is no post-expiry grace period for this route. HR systems should surface alerts at 60 days and 30 days before Student visa expiry for any employee who hasn't yet applied.
Student visa expiry: [DATE_EXPIRY]
Latest application date: DATE_EXPIRY - 1 day
Earliest application date: Course completion confirmed
During the application pending period, the applicant retains their existing leave (the Student visa) and may work full-time even if the Student visa's work restriction was lower. The Home Office has confirmed this interpretation in published guidance.
Work Rights by Status
| Status | Work Rights |
|---|---|
| Student visa (active) | Typically 20 hrs/week during term |
| Graduate application pending | Full-time (per Home Office guidance) |
| Graduate visa active | Unrestricted — any employer, any role |
| Graduate visa expired | No right to work in UK |
HR systems tracking work authorisation should treat the Graduate pending period as full unrestricted work rights once the application reference number is confirmed by the Home Office.
Share code availability: Share codes are not generated until the Graduate visa is actually granted. During the pending period, the right to work is evidenced by the Student visa plus the application acknowledgement from the Home Office. Build your verification logic to handle this two-document state.
The Non-Extendability Constraint
The Graduate Route cannot be extended. This is architecturally significant for HR compliance tools that manage visa renewal reminders.
A Graduate visa holder approaching expiry needs a switch to another route (typically Skilled Worker) or departure. This means:
- Track Graduate expiry separately from other renewable routes
- Reminder logic should trigger Skilled Worker eligibility checks at 12 months before Graduate expiry, not just 90 days
- If a Skilled Worker application is in progress at the same time the Graduate visa is still active, two concurrent visa reference numbers may exist simultaneously
Settlement Clock — What Doesn't Count
Time on the Graduate Route does not accrue toward ILR directly. The qualifying residence clock for Skilled Worker ILR starts from the date of the Skilled Worker visa grant.
# Incorrect — treats Graduate time as qualifying
ilr_eligible_date = graduate_visa_grant_date + timedelta(days=5*365)
# Correct — clock starts from Skilled Worker grant
ilr_eligible_date = skilled_worker_grant_date + timedelta(days=5*365)
For employees who spent 2 years on Graduate before switching to Skilled Worker, their 5-year ILR timeline starts fresh from Skilled Worker grant date. Systems treating Graduate time as qualifying residence will produce incorrect ILR eligibility dates and misinform employees.
Absence Tracking During Graduate Period
The Graduate visa itself has no continuous residence requirement beyond what's inherited from a later ILR application. However, extended absences during the Graduate period can affect the subsequent Skilled Worker → ILR calculation.
Track all departure and entry dates throughout the Graduate period and pass them into the Skilled Worker absences model. The running total of days outside the UK matters for ILR purposes, and gaps in tracking are hard to reconstruct from passport stamps alone.
Sponsor Licence Verification for Onboarding Graduates
HR systems onboarding recent graduates should verify that their degree was completed at an institution holding a valid Student sponsor licence at the time of study. A course at an institution whose licence was revoked or suspended during the student's enrolment can invalidate the Graduate Route application.
The register of licensed student sponsors is updated regularly by the Home Office. You can cross-reference institution names and current status via ImmigrationGPT, which indexes the GOV.UK published register.
Summary Reference Table
| Field | Value |
|---|---|
| Route type | In-country switch only |
| Application window opens | Course completion confirmed |
| Application window closes | Day before Student visa expiry |
| Duration granted | 24 months (PhD/doctoral: 36 months) |
| Extensible | No |
| Salary threshold | None |
| Sponsor required | No |
| Work restriction | None (once granted) |
| Counts toward ILR | No |
Key Engineering Takeaways
- Hard expiry, no extension — model Graduate as a countdown timer with no renewal path, unlike Skilled Worker
- Pending state = full work rights — don't restrict employee work authorisation between application submission and grant
- ILR clock resets at Skilled Worker grant — never roll Graduate time into the settlement calculation
- Absence data must persist — collect dates throughout Graduate period even though it doesn't directly affect ILR; they're needed for the subsequent Skilled Worker → ILR calculation
For plain-English explanations of these rules for end users and employees navigating the process themselves, see ImmigrationGPT.
For plain-English explanations of UK immigration rules and sponsor register lookups, see ImmigrationGPT.
Top comments (0)