Created
May 27, 2026 12:53
-
-
Save dexit/1ccde1402c54b4b403ab5a40649fc287 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Psr\Http\Message\ResponseInterface; | |
| use GuzzleHttp\Exception\RequestException; | |
| use GuzzleHttp\Client; | |
| use GuzzleHttp\Psr7\Utils; | |
| use GuzzleHttp\Psr7\Request; | |
| require 'vendor/autoload.php'; | |
| $key = ''; | |
| $url = 'https://api.apprenticeships.education.gov.uk/vacancies'; | |
| $headers = [ | |
| 'X-Version' => '2', | |
| 'Ocp-Apim-Subscription-Key' => $key | |
| ]; | |
| $clientConfig = array( | |
| 'timeout' => 30 | |
| ); | |
| function fetchVacancies($url, $key, $clientConfig, $params) | |
| { | |
| $client = new Client($clientConfig); | |
| $headers = [ | |
| 'X-Version' => '2', | |
| 'Ocp-Apim-Subscription-Key' => $key, | |
| 'Content-Type' => 'application/json', | |
| //'Accept' => 'application/json' | |
| ]; | |
| $query = http_build_query($params); | |
| $request = new Request('GET', "$url/vacancy?$query", $headers); | |
| $res = $client->sendAsync($request)->wait(); | |
| $allvacancies2 = $res->getBody(); | |
| // $allvacancies = $res; | |
| return $allvacancies2; | |
| } | |
| // Read the JSON body from the POST request | |
| if ($_SERVER['REQUEST_METHOD'] === 'POST') { | |
| $input = file_get_contents('php://input'); | |
| $params = json_decode($input, true); | |
| $PageNumber = isset($params['PageNumber']) ?? '1'; | |
| $PostedInLastNumberOfDays = isset($params['PostedInLastNumberOfDays']) ?? '7'; | |
| $PageSize = isset($params['PageSize']) ?? '30'; | |
| $Sort = isset($params['Sort']) ?? 'AgeDesc'; | |
| $DistanceInMiles = isset($params['DistanceInMiles']) ?? '50'; | |
| $Lat = isset($params['Lon']) ?? '52.4968912'; | |
| $Lat = isset($params['Lat']) ?? '-1.893460'; | |
| // Set default values if parameters are not provided | |
| $params = array( | |
| 'PageNumber' => $PageNumber, | |
| 'PostedInLastNumberOfDays' => $PostedInLastNumberOfDays, | |
| 'PageSize' => $PageSize, | |
| 'Sort' => $Sort, | |
| 'DistanceInMiles' => $DistanceInMiles, | |
| 'Lat' => $Lat, | |
| 'Lon' => $Lon | |
| // 'NationWideOnly' => 'false' | |
| ); | |
| $allVacancies = fetchVacancies($url, $key, $clientConfig, $params); | |
| } else { | |
| $params = [ | |
| 'PageNumber' => 1, | |
| 'PostedInLastNumberOfDays' => 21, | |
| 'PageSize' => 30, | |
| 'Sort' => 'AgeDesc', | |
| 'DistanceInMiles' => 50, | |
| 'Lat' =>'52.4968912', | |
| 'Lon' =>'-1.893460' | |
| ]; | |
| $allVacancies = fetchVacancies($url,$key, $clientConfig, $params); | |
| } | |
| /* | |
| # Rate limiting | |
| We use rate limiting to protect the quality of our APIs. | |
| You can make up to 150 requests within a 5 minute period. | |
| The API will return a 429 status code if you exceed this request limit. | |
| After the end of the 5 minute period, your request limit will reset back to 150 requests for the next period. | |
| */ | |
| header('Access-Control-Allow-Origin: *'); | |
| header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS'); | |
| header('Access-Control-Allow-Headers: X-Requested-With, Content-Type, Origin, Authorization, App-Version, Accept'); | |
| header('Content-Type: application/json'); | |
| echo $allVacancies; | |
| /* | |
| # Response : | |
| { | |
| "vacancies": [ | |
| { | |
| "title": "Customs Clearance Apprentice", | |
| "description": "\u003Cp\u003EWe are looking for an enthusiastic person to join our ever-growing customs department.\u003C/p\u003E \u003Cp\u003EFull training will be given. The successful candidate will have the opportunity to gain experience and skills to begin an exciting career in a growing industry.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-06T12:56:38.273Z", | |
| "closingDate": "2026-05-29T23:59:59Z", | |
| "startDate": "2026-06-08T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£18,000 a year", | |
| "workingWeekDescription": "Monday - Friday, 8:30am - 5.00pm, with an hour lunch break." | |
| }, | |
| "hoursPerWeek": 37.5, | |
| "expectedDuration": "1 Year 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "15 NURSERY COURT", | |
| "addressLine2": "KIBWORTH HARCOURT", | |
| "addressLine3": "LEICESTER", | |
| "postcode": "LE8 0EX", | |
| "latitude": 52.53506, | |
| "longitude": -0.97964 | |
| } | |
| ], | |
| "distance": 38.5553011733683, | |
| "employerName": "CZECH LOGISTICS ALLIANCE (UK) LTD", | |
| "employerWebsiteUrl": "https://www.cla-uk.com", | |
| "course": { | |
| "larsCode": 264, | |
| "title": "International freight forwarding specialist (level 3)", | |
| "level": 3, | |
| "route": "Transport and logistics", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "SEETEC BUSINESS TECHNOLOGY CENTRE LIMITED", | |
| "ukprn": 10005735, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030143", | |
| "vacancyReference": "2000030143", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Engineering Maintenance Apprentice", | |
| "description": "\u003Cp\u003ERussell Roof Tiles are looking for an apprentice to join a skilled team of Maintenance Engineers working on cutting edge, automated heavy industrial plant. Working in a fast-paced environment alongside skilled professionals, you will gain practical experience as you gain qualifications in engineering.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-06T13:46:10.723Z", | |
| "closingDate": "2026-06-01T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£25,200 a year", | |
| "workingWeekDescription": "Monday to Thursday - 6am to 4pm\r\nFriday - 6am to 2pm\r\n2x 20 minute breaks\r\nYou may be required to work evenings, nights or at weekends." | |
| }, | |
| "hoursPerWeek": 48, | |
| "expectedDuration": "4 Years", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Nicolson Way Off Wellington Road", | |
| "addressLine2": "Burton On Trent", | |
| "postcode": "DE14 2AW", | |
| "latitude": 52.79874, | |
| "longitude": -1.65473 | |
| } | |
| ], | |
| "distance": 23.1586682463498, | |
| "employerName": "RUSSELL BUILDING PRODUCTS LIMITED", | |
| "employerWebsiteUrl": "https://www.russellrooftiles.com/", | |
| "course": { | |
| "larsCode": 815, | |
| "title": "Engineering maintenance technician - dual discipline (level 3)", | |
| "level": 3, | |
| "route": "Engineering and manufacturing", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "DCG", | |
| "ukprn": 10001919, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000028762", | |
| "vacancyReference": "2000028762", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "General Farmworker Apprenticeship", | |
| "description": "\u003Cp\u003EWe are seeking a reliable and hardworking General Farmworker to join our team. The role involves a variety of tasks including livestock care, crop work, machinery operation, and general farm maintenance. \u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-06T13:59:17.513Z", | |
| "closingDate": "2026-07-31T23:59:59Z", | |
| "startDate": "2026-09-07T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "Shifts to be discussed at interview stage." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "NOTHILL FARM", | |
| "addressLine2": "CREIGHTON", | |
| "addressLine3": "STRAMSHALL", | |
| "addressLine4": "UTTOXETER", | |
| "postcode": "ST14 5AT", | |
| "latitude": 52.93432, | |
| "longitude": -1.87996 | |
| } | |
| ], | |
| "distance": 30.2628022862567, | |
| "employerName": "MR G H BROOKES", | |
| "course": { | |
| "larsCode": 621, | |
| "title": "General farm worker (level 2)", | |
| "level": 2, | |
| "route": "Agriculture, environmental and animal care", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "REASEHEATH COLLEGE", | |
| "ukprn": 10005404, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030189", | |
| "vacancyReference": "2000030189", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Finance Assistant Apprentice (Malvern Panalytical)", | |
| "description": "\u003Cp\u003EThis apprenticeship will be Level 3 and 4 AAT over 3 years.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-06T14:02:14.247Z", | |
| "closingDate": "2026-05-30T23:59:59Z", | |
| "startDate": "2026-06-08T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£17,200 a year", | |
| "workingWeekDescription": "Level 3 & 4 AAT over 3 years\r\nMonday to Friday.\r\nShifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 37.5, | |
| "expectedDuration": "3 Years", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Grovewood Road", | |
| "addressLine2": "Malvern", | |
| "addressLine3": "Worcestershire", | |
| "postcode": "WR14 1XZ", | |
| "latitude": 52.1286, | |
| "longitude": -2.3037 | |
| } | |
| ], | |
| "applicationUrl": "https://www.getmyfirstjob.co.uk/opportunity/e377e4c6-0e39-4b17-8761-da0e92b2bb6a/c476bf6c-3254-4deb-acc6-dad1417b83b0", | |
| "distance": 30.8206925153478, | |
| "employerName": "Malvern Panalytical Ltd", | |
| "course": { | |
| "larsCode": 133, | |
| "title": " (level 0)", | |
| "level": 0, | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "BPP PROFESSIONAL EDUCATION LIMITED", | |
| "ukprn": 10029952, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030197", | |
| "vacancyReference": "2000030197", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Business Administration Apprenticeship", | |
| "description": "\u003Cp\u003EIn the role of business administrator, you will support the daily office operations to assist with the efficient and effective operation of the office. The role involves supporting the admin, transport and purchasing teams with any administration while developing skills in administration, customer service, and business systems.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-06T14:18:41.387Z", | |
| "closingDate": "2026-05-30T23:59:59Z", | |
| "startDate": "2026-06-30T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£20,800 a year", | |
| "workingWeekDescription": "Shifts to be confirmed" | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year 9 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "100 HALFORDS LANE", | |
| "addressLine2": "HAWTHORNS BUSINESS PARK", | |
| "addressLine3": "SMETHWICK", | |
| "postcode": "B66 1BB", | |
| "latitude": 52.50367, | |
| "longitude": -1.96784 | |
| } | |
| ], | |
| "distance": 3.16737947468813, | |
| "employerName": "CSS LTD", | |
| "employerWebsiteUrl": "https://cssframebuilder.com/about/", | |
| "course": { | |
| "larsCode": 196, | |
| "title": "Business administrator (level 3)", | |
| "level": 3, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "SANDWELL COLLEGE", | |
| "ukprn": 10005669, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000029819", | |
| "vacancyReference": "2000029819", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "CNC Engineering Machining Apprentice", | |
| "description": "\u003Cp\u003EAccura Engineering are offering an exciting opportunity for a Machinist Apprentice to join their team. You will learn machining, stock control, quality standards, and safe working practices while supporting efficient production and continuous improvement.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T09:07:57.443Z", | |
| "closingDate": "2026-06-01T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£15,392 a year", | |
| "workingWeekDescription": "Monday - Thursday 8:00am - 5:00pm, Friday 8:00am - 1:00pm" | |
| }, | |
| "hoursPerWeek": 37, | |
| "expectedDuration": "3 Years", | |
| "addresses": [ | |
| { | |
| "addressLine1": "1 Stringes Close", | |
| "addressLine2": "Willenhall", | |
| "postcode": "WV13 1LE", | |
| "latitude": 52.59182, | |
| "longitude": -2.0451 | |
| } | |
| ], | |
| "distance": 9.15509101568154, | |
| "employerName": "ACCURA ENGINEERING LIMITED", | |
| "employerWebsiteUrl": "https://www.accura.co.uk", | |
| "course": { | |
| "larsCode": 691, | |
| "title": "Machining technician (level 3)", | |
| "level": 3, | |
| "route": "Engineering and manufacturing", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "IN-COMM TRAINING AND BUSINESS SERVICES LIMITED", | |
| "ukprn": 10003280, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000029397", | |
| "vacancyReference": "2000029397", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Business Administration Apprentice (Operations)", | |
| "description": "\u003Cp\u003EThe USP sales team is expanding and are now looking to recruit a new Operations Administration Apprentice. They are on the lookout for individuals wanting to get involved and make an impact on the success of their business. If you are ambitious, driven with a will to succeed, this could be for you.\u003C/p\u003E", | |
| "numberOfPositions": 2, | |
| "postedDate": "2026-05-07T09:13:13.373Z", | |
| "closingDate": "2026-06-30T23:59:59Z", | |
| "startDate": "2026-07-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£15,808 a year", | |
| "workingWeekDescription": "Monday - Thursday, 8.30am - 5.00pm and Friday, 8.30am - 3.00pm" | |
| }, | |
| "hoursPerWeek": 38, | |
| "expectedDuration": "1 Year 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Gibbons Industrial Park,", | |
| "addressLine2": "Pensnett", | |
| "addressLine3": "Kingswinford", | |
| "postcode": "DY6 8XF", | |
| "latitude": 52.50051, | |
| "longitude": -2.14762 | |
| } | |
| ], | |
| "distance": 10.7058272269927, | |
| "employerName": "USP STEELS LIMITED", | |
| "employerWebsiteUrl": "https://www.uspsteels.com/", | |
| "course": { | |
| "larsCode": 196, | |
| "title": "Business administrator (level 3)", | |
| "level": 3, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "JUNIPER TRAINING LIMITED", | |
| "ukprn": 10003529, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030241", | |
| "vacancyReference": "2000030241", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Apprentice Dental Nurse - Warwickshire", | |
| "description": "\u003Cp\u003EThe apprenticeship in dental nursing is a 12-month government-funded course by City & Guilds, a Level 3 Extended Diploma. Alongside your learning, your job role within the practice will entail assisting dentists, sterilising & preparing equipment, reception duties and supporting patient experience.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T09:14:38.987Z", | |
| "closingDate": "2026-06-12T23:59:59Z", | |
| "startDate": "2026-06-13T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£12,480 a year", | |
| "workingWeekDescription": "Monday to Friday, shifts to be confirmed; some evening and weekend work may be required depending on the rota." | |
| }, | |
| "hoursPerWeek": 30, | |
| "expectedDuration": "1 Year", | |
| "addresses": [ | |
| { | |
| "addressLine1": "THE OLD TILE HOUSE", | |
| "addressLine2": "MARKET PLACE", | |
| "addressLine3": "ALCESTER", | |
| "addressLine4": "WARWICKSHIRE", | |
| "postcode": "B49 5AE", | |
| "latitude": 52.21528, | |
| "longitude": -1.86961 | |
| } | |
| ], | |
| "distance": 19.504674135283, | |
| "employerName": "AMPTRAD LTD", | |
| "course": { | |
| "larsCode": 779, | |
| "title": "Dental nurse (level 3)", | |
| "level": 3, | |
| "route": "Health and science", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "HARRIET ELLIS TRAINING SOLUTIONS LIMITED", | |
| "ukprn": 10032857, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030247", | |
| "vacancyReference": "2000030247", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Toolmaking Apprentice", | |
| "description": "\u003Cp\u003EAccura Engineering are offering an exciting opportunity for an Apprentice Toolmaker to join their team. In this role, you will develop skills in precision grinding, machine operation, preventative maintenance, and the production of tooling components, while learning about stock control, quality standards, and safe working practices.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T09:22:45.543Z", | |
| "closingDate": "2026-06-01T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£15,392 a year", | |
| "workingWeekDescription": "Monday- Thursday 8:00am-5:00pm\r\nFriday 8:00am- 1:00pm" | |
| }, | |
| "hoursPerWeek": 37, | |
| "expectedDuration": "3 Years 1 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "1 Stringes Close", | |
| "addressLine2": "Willenhall", | |
| "postcode": "WV13 1LE", | |
| "latitude": 52.59182, | |
| "longitude": -2.0451 | |
| } | |
| ], | |
| "distance": 9.15509101568154, | |
| "employerName": "ACCURA ENGINEERING LIMITED", | |
| "employerWebsiteUrl": "https://www.accura.co.uk", | |
| "course": { | |
| "larsCode": 691, | |
| "title": "Machining technician (level 3)", | |
| "level": 3, | |
| "route": "Engineering and manufacturing", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "IN-COMM TRAINING AND BUSINESS SERVICES LIMITED", | |
| "ukprn": 10003280, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030237", | |
| "vacancyReference": "2000030237", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Chef Apprenticeship", | |
| "description": "\u003Cp\u003EJoin us at Greene King pubs, where we have always been the beacon for communities, wherever people want to come together. Our collection of community pubs are the heart and soul of the local area around them, helmed by a local hero and crewed by a team always ready with your favourite tipple. Our pubs embody the true meaning of a local pub.\u003C/p\u003E", | |
| "numberOfPositions": 2, | |
| "postedDate": "2026-05-07T09:30:05.867Z", | |
| "closingDate": "2026-06-04T11:59:59Z", | |
| "startDate": "2026-06-10T12:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£11,284 a year", | |
| "workingWeekDescription": "20 hours min Shift work including bank holidays, evenings and weekends. Exact shifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 20, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Whitehills Way", | |
| "postcode": "NN2 8EW", | |
| "latitude": 52.27713, | |
| "longitude": -0.90504 | |
| } | |
| ], | |
| "applicationUrl": "https://apply.lifetimetraining.co.uk/lifetimetraining/Job/?a=345BF27C3.0", | |
| "distance": 44.4092496667807, | |
| "employerName": "Whitehills (Northampton)", | |
| "employerWebsiteUrl": "https://www.greeneking.co.uk/pubs/hertfordshire/sun-hotel", | |
| "course": { | |
| "larsCode": 364, | |
| "title": "Production chef (level 2)", | |
| "level": 2, | |
| "route": "Catering and hospitality", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "LIFETIME TRAINING GROUP LIMITED", | |
| "ukprn": 10003915, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030258", | |
| "vacancyReference": "2000030258", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Bar and Waiting Apprentice", | |
| "description": "\u003Cp\u003EGreene King are looking for a motivated and passionate individual to join their team as a Kitchen Team Leader Apprentice. If you are looking to take the next step within your Hospitality career into a more senior position then this is the opportunity for you!\u003C/p\u003E", | |
| "numberOfPositions": 2, | |
| "postedDate": "2026-05-07T09:34:28.453Z", | |
| "closingDate": "2026-06-04T11:59:59Z", | |
| "startDate": "2026-06-10T12:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£8,788 a year", | |
| "workingWeekDescription": "20-hours minimum per week. Shift work including bank holidays, evenings and weekends. Exact shifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 20, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Whitehills Way", | |
| "postcode": "NN2 8EW", | |
| "latitude": 52.27713, | |
| "longitude": -0.90504 | |
| } | |
| ], | |
| "applicationUrl": "https://apply.lifetimetraining.co.uk/lifetimetraining/Job/?a=845BF29B8.0", | |
| "distance": 44.4092496667807, | |
| "employerName": "Whitehills (Northampton)", | |
| "employerWebsiteUrl": "https://www.greeneking.co.uk/", | |
| "course": { | |
| "larsCode": 801, | |
| "title": "Food and beverage team member (level 2)", | |
| "level": 2, | |
| "route": "Catering and hospitality", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "LIFETIME TRAINING GROUP LIMITED", | |
| "ukprn": 10003915, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030262", | |
| "vacancyReference": "2000030262", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Apprentice Dental Nurse - Leamington Spa", | |
| "description": "\u003Cp\u003EThe apprenticeship in dental nursing is a 12-month government-funded course by City & Guilds, a Level 3 Extended Diploma. Alongside your learning, your job role within the practice will entail assisting dentists, sterilising & preparing equipment, reception duties and supporting patient experience.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T09:48:28.043Z", | |
| "closingDate": "2026-06-12T23:59:59Z", | |
| "startDate": "2026-06-13T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£12,480 a year", | |
| "workingWeekDescription": "Monday to Friday, shifts to be confirmed; some evening and weekend work may be required depending on the rota." | |
| }, | |
| "hoursPerWeek": 30, | |
| "expectedDuration": "1 Year", | |
| "addresses": [ | |
| { | |
| "addressLine1": "6 BEAUCHAMP HILL", | |
| "addressLine2": "LEAMINGTON SPA", | |
| "postcode": "CV32 5NS", | |
| "latitude": 52.29282, | |
| "longitude": -1.54178 | |
| } | |
| ], | |
| "distance": 20.4838569080241, | |
| "employerName": "VITHLANI DENTAL LTD", | |
| "course": { | |
| "larsCode": 779, | |
| "title": "Dental nurse (level 3)", | |
| "level": 3, | |
| "route": "Health and science", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "HARRIET ELLIS TRAINING SOLUTIONS LIMITED", | |
| "ukprn": 10032857, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000029250", | |
| "vacancyReference": "2000029250", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Apprentice Chef", | |
| "description": "\u003Cp\u003EGreene King are looking for an individual, with a relentless passion for delivering an outstanding customer experience, to join their team as an Apprentice Chef!\u003C/p\u003E", | |
| "numberOfPositions": 2, | |
| "postedDate": "2026-05-07T09:54:26.717Z", | |
| "closingDate": "2026-06-05T11:59:59Z", | |
| "startDate": "2026-06-11T12:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£11,388 a year", | |
| "workingWeekDescription": "20 hours minimum p/week. Shift work including bank holidays, evenings and weekends. Exact shifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 20, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "28 Main Road", | |
| "postcode": "ST17 0UW", | |
| "latitude": 52.78882, | |
| "longitude": -2.04258 | |
| } | |
| ], | |
| "applicationUrl": "https://apply.lifetimetraining.co.uk/lifetimetraining/Job/?a=345C03363.0", | |
| "distance": 21.1406654959224, | |
| "employerName": "Barley Mow (Milford)", | |
| "employerWebsiteUrl": "https://www.greeneking.co.uk/", | |
| "course": { | |
| "larsCode": 364, | |
| "title": "Production chef (level 2)", | |
| "level": 2, | |
| "route": "Catering and hospitality", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "LIFETIME TRAINING GROUP LIMITED", | |
| "ukprn": 10003915, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030287", | |
| "vacancyReference": "2000030287", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Apprentice Team Leader", | |
| "description": "\u003Cp\u003EAs an Apprentice Team Leader, you'll lead by example, making sure the team have everything they need so the shift runs like clockwork! You'll make sure the team maintain high standards and that our customers are kept happy.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T09:58:47.593Z", | |
| "closingDate": "2026-06-05T11:59:59Z", | |
| "startDate": "2026-06-11T12:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£13,218 a year", | |
| "workingWeekDescription": "Shift work including evenings and weekends, exact shifts to be confirmed" | |
| }, | |
| "hoursPerWeek": 20, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "28 Main Road", | |
| "postcode": "ST17 0UW", | |
| "latitude": 52.78882, | |
| "longitude": -2.04258 | |
| } | |
| ], | |
| "applicationUrl": "https://apply.lifetimetraining.co.uk/lifetimetraining/Job/?a=045C04200.0", | |
| "distance": 21.1406654959224, | |
| "employerName": "Barley Mow (Milford)", | |
| "employerWebsiteUrl": "https://www.greeneking.co.uk/", | |
| "course": { | |
| "larsCode": 138, | |
| "title": "Hospitality supervisor (level 3)", | |
| "level": 3, | |
| "route": "Catering and hospitality", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "LIFETIME TRAINING GROUP LIMITED", | |
| "ukprn": 10003915, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030292", | |
| "vacancyReference": "2000030292", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Manufacturing Apprenticeship", | |
| "description": "\u003Cp\u003ELooking for a long-term career in manufacturing? The Walsall Wheelbarrow Co Ltd have a great opportunity for an apprentice to join their thriving team. The apprentice will have hands-on experience, learning the aspects of wheelbarrow manufacturing from experienced staff while completing a Lean Manufacturing Operative Level 2.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T10:09:17.017Z", | |
| "closingDate": "2026-05-29T23:59:59Z", | |
| "startDate": "2026-06-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "Monday to Friday, 8am - 4:30pm." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year", | |
| "addresses": [ | |
| { | |
| "addressLine1": "UNIT 10/12 PHOENIX RD", | |
| "addressLine2": "WEDNESFIELD", | |
| "addressLine3": "WOLVERHAMPTON", | |
| "postcode": "WV11 3PQ", | |
| "latitude": 52.59435, | |
| "longitude": -2.0822 | |
| } | |
| ], | |
| "distance": 10.4154752086199, | |
| "employerName": "THE WALSALL WHEELBARROW CO LTD", | |
| "course": { | |
| "larsCode": 493, | |
| "title": "Lean manufacturing operative (level 2)", | |
| "level": 2, | |
| "route": "Engineering and manufacturing", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "STAFF SELECT LTD", | |
| "ukprn": 10027272, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030310", | |
| "vacancyReference": "2000030310", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Early Years Apprenticeship - Nellys Nurseries", | |
| "description": "\u003Cp\u003ENellys Nurseries are looking to recruit a motivated and caring Level 2 Early Years Apprentice to support children aged 0-5 years while working towards a recognised early years qualification. This role is ideal for someone passionate about early years education and eager to develop their skills in a supportive, experienced team.\u003C/p\u003E", | |
| "numberOfPositions": 3, | |
| "postedDate": "2026-05-07T10:23:02.727Z", | |
| "closingDate": "2026-05-30T23:59:59Z", | |
| "startDate": "2026-06-08T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£20,800 a year", | |
| "workingWeekDescription": "Working hours 40 hours\r\n4/5 days\r\nDays to be confirmed." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Wolverhampton Road", | |
| "postcode": "ST19 5DR", | |
| "latitude": 52.7229, | |
| "longitude": -2.11577 | |
| } | |
| ], | |
| "applicationUrl": "https://realise.justapply.co.uk/apprenticeships/881/early_years_apprenticeship_-_nellys_nurseries.html?s=nas", | |
| "distance": 18.2100048829159, | |
| "employerName": "TURTLES NURSERY LTD ", | |
| "employerWebsiteUrl": "", | |
| "course": { | |
| "larsCode": 550, | |
| "title": "Early years practitioner (level 2)", | |
| "level": 2, | |
| "route": "Education and early years", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "REALISE LEARNING AND EMPLOYMENT LIMITED", | |
| "ukprn": 10034309, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030309", | |
| "vacancyReference": "2000030309", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Apprentice Assistant Research Technician", | |
| "description": "\u003Cp\u003EThis apprenticeship gives you the opportunity to learn and develop into a technician role working in a laboratory. You will carry out a range of duties whilst supporting research projects across the college. In addition, you will undertake the Level 3 Laboratory Technician Apprenticeship with CSR Scientific Training.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T10:25:19.62Z", | |
| "closingDate": "2026-05-31T23:59:59Z", | |
| "startDate": "2026-09-07T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£20,782 a year", | |
| "workingWeekDescription": "Monday - Friday, 09:00 - 17:00." | |
| }, | |
| "hoursPerWeek": 35, | |
| "expectedDuration": "2 Years 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Edgbaston", | |
| "addressLine2": "Birmingham", | |
| "addressLine3": "West Midlands", | |
| "postcode": "B15 2TT", | |
| "latitude": 52.45328, | |
| "longitude": -1.92789 | |
| } | |
| ], | |
| "applicationUrl": "https://edzz.fa.em3.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_6001/job/9278/?utm_medium=jobshare&utm_source=External+Job+Share", | |
| "distance": 3.34721684656796, | |
| "employerName": "UNIVERSITY OF BIRMINGHAM", | |
| "employerWebsiteUrl": "https://www.birmingham.ac.uk/jobs/apprenticeships", | |
| "employerContactEmail": "apprenticeships@contacts.bham.ac.uk", | |
| "course": { | |
| "larsCode": 14, | |
| "title": "Laboratory technician (level 3)", | |
| "level": 3, | |
| "route": "Health and science", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "CSR SCIENTIFIC TRAINING LIMITED", | |
| "ukprn": 10034416, | |
| "isDisabilityConfident": true, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030333", | |
| "vacancyReference": "2000030333", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Technical Engineering Apprentice", | |
| "description": "\u003Cp\u003EVoestalpine Metsec are seeking four enthusiastic apprentices to join their team. As an apprentice you will be required to operate, set and modify press work operations, cold rolling forming lines fabrication work, operate fork lift truck and crane, assist with quality and health and safety procedures and meeting customer requirement times.\u003C/p\u003E", | |
| "numberOfPositions": 4, | |
| "postedDate": "2026-05-07T10:28:13.797Z", | |
| "closingDate": "2026-06-01T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£15,853 a year", | |
| "workingWeekDescription": "Monday - Thursday, 7.00am - 4.00pm.\r\n\r\nFriday, 7:00am - 12:30pm." | |
| }, | |
| "hoursPerWeek": 37, | |
| "expectedDuration": "2 Years 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Broadwell Road", | |
| "addressLine2": "Oldbury", | |
| "addressLine3": "West Midlands", | |
| "postcode": "B69 4BY", | |
| "latitude": 52.50834, | |
| "longitude": -2.01201 | |
| } | |
| ], | |
| "distance": 5.05436099213332, | |
| "employerName": "VOESTALPINE METSEC PLC", | |
| "employerWebsiteUrl": "https://www.metsec.com", | |
| "course": { | |
| "larsCode": 773, | |
| "title": "Engineering and manufacturing support technician (level 3)", | |
| "level": 3, | |
| "route": "Engineering and manufacturing", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "IN-COMM TRAINING AND BUSINESS SERVICES LIMITED", | |
| "ukprn": 10003280, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030323", | |
| "vacancyReference": "2000030323", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Teaching Assistant Apprentice Level 3", | |
| "description": "\u003Cp\u003EWe are looking for someone passionate about making a positive difference to young children, regardless of their needs. You’ll need patience, kindness and the ability to follow guidance, with an understanding of firm but nurturing boundaries. Strong personal qualities are key, alongside basic maths and English skills.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T10:34:03.153Z", | |
| "closingDate": "2026-06-08T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "NationalMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£14,560 to £23,132.20 a year", | |
| "workingWeekDescription": "Monday to Friday 8.30am - 4.00pm (Term time 39 weeks) 35-hours per week" | |
| }, | |
| "hoursPerWeek": 35, | |
| "expectedDuration": "1 Year 5 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Whoberley Hall Primary School", | |
| "addressLine2": "Overdale Road", | |
| "addressLine3": "Coventry", | |
| "postcode": "CV5 8AJ", | |
| "latitude": 52.41108, | |
| "longitude": -1.55373 | |
| } | |
| ], | |
| "applicationUrl": "https://sccu.teamdash.com/p/job/zFZV7ko7/teaching-assistant-apprentice", | |
| "distance": 15.5014111636408, | |
| "employerName": "Whoberley Hall Primary School", | |
| "employerWebsiteUrl": "https://www.whoberleyhall-coventry.org.uk/", | |
| "course": { | |
| "larsCode": 297, | |
| "title": "Teaching assistant (level 3)", | |
| "level": 3, | |
| "route": "Education and early years", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "SCCU LTD", | |
| "ukprn": 10036794, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030231", | |
| "vacancyReference": "2000030231", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Property Maintenance Apprentice", | |
| "description": "\u003Cp\u003EWe are after a keen individual to join our team as an apprentice builder, this will involve working within multiple disaplines of the industry, works are normally in domestic properties across the West Midlands.\u003C/p\u003E", | |
| "numberOfPositions": 2, | |
| "postedDate": "2026-05-07T10:53:56.383Z", | |
| "closingDate": "2026-05-31T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "4 days a week working with Hogar Construction and 1 day a week at college. Shifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "2 Years", | |
| "addresses": [ | |
| { | |
| "addressLine1": "44C MILL STREET", | |
| "addressLine2": "KIDDERMINSTER", | |
| "postcode": "DY11 6XB", | |
| "latitude": 52.38905, | |
| "longitude": -2.25528 | |
| } | |
| ], | |
| "distance": 16.9814484496334, | |
| "employerName": "HOGAR CONSTRUCTION LTD", | |
| "employerWebsiteUrl": "https://www.hogarconstruction.co.uk/", | |
| "course": { | |
| "larsCode": 23, | |
| "title": "Property maintenance operative (level 2)", | |
| "level": 2, | |
| "route": "Construction and the built environment", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "NCG", | |
| "ukprn": 10004599, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030364", | |
| "vacancyReference": "2000030364", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Marketing Communications Apprentice", | |
| "description": "\u003Cp\u003EThis exciting role is all about capturing the inspirational journeys of the people we support, from housing residents and nursery parents to young people and gym members. You’ll travel to our different sites, meet people from all walks of life, and create content that shares the positive impact of YMCA across our communities.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T10:56:25.407Z", | |
| "closingDate": "2026-05-29T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,770 a year", | |
| "workingWeekDescription": "Monday to Friday, 9.00am - 5.00pm." | |
| }, | |
| "hoursPerWeek": 37.5, | |
| "expectedDuration": "1 Year 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "YMCA", | |
| "addressLine2": "Tramway Drive", | |
| "addressLine3": "Wolverhampton", | |
| "postcode": "WV2 1BJ", | |
| "latitude": 52.58232, | |
| "longitude": -2.12136 | |
| } | |
| ], | |
| "distance": 11.2631797212663, | |
| "employerName": "YMCA WOLVERHAMPTON", | |
| "course": { | |
| "larsCode": 737, | |
| "title": "Multi-channel marketer (level 3)", | |
| "level": 3, | |
| "route": "Sales, marketing and procurement", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "HALESOWEN COLLEGE", | |
| "ukprn": 10002852, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030362", | |
| "vacancyReference": "2000030362", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Chef Apprenticeship", | |
| "description": "\u003Cp\u003EAre you ready to turn your hand to new skills? We're looking for a motivated individual to join our team as an Apprentice Chef - helping our kitchen team make amazing food for our guests.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T10:57:42.7Z", | |
| "closingDate": "2026-06-11T11:59:59Z", | |
| "startDate": "2026-06-17T12:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,926 a year", | |
| "workingWeekDescription": "Shift work including evenings and weekends, exact shifts to be confirmed." | |
| }, | |
| "hoursPerWeek": 30, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Romsley", | |
| "postcode": "B62 0LA", | |
| "latitude": 52.41835, | |
| "longitude": -2.05636 | |
| } | |
| ], | |
| "applicationUrl": "https://apply.lifetimetraining.co.uk/lifetimetraining/Job/?a=845C0F558.0", | |
| "distance": 8.75543334187043, | |
| "employerName": "Marstons - Sun Romsley", | |
| "employerWebsiteUrl": "https://www.sunpubhalesowen.co.uk/", | |
| "course": { | |
| "larsCode": 93, | |
| "title": "Commis chef (level 2)", | |
| "level": 2, | |
| "route": "Catering and hospitality", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "LIFETIME TRAINING GROUP LIMITED", | |
| "ukprn": 10003915, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030360", | |
| "vacancyReference": "2000030360", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Quality Business Administration Apprentice", | |
| "description": "\u003Cp\u003EAs a Quality Business Administrator Apprentice, you will play a key role in supporting our Quality function. This rotation-based role will give you exposure to quality inspections, compliance, safety, and facilities. You’ll help ensure that we are meeting the required standard, support operational excellence and regulatory compliance.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T11:04:19.227Z", | |
| "closingDate": "2026-06-05T23:59:59Z", | |
| "startDate": "2026-06-08T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "Monday-Thursday, 8:00am - 5:00pm.\r\n\r\nFriday, 8:00am - 2:00pm." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Moor Farm Road", | |
| "addressLine2": "Airfield Industrial Estate", | |
| "addressLine3": "Ashbourne", | |
| "postcode": "DE6 1HD", | |
| "latitude": 53.00711, | |
| "longitude": -1.71399 | |
| } | |
| ], | |
| "distance": 36.0833545949467, | |
| "employerName": "MASTERMOVER LTD", | |
| "employerWebsiteUrl": "http://www.mastermover.com", | |
| "course": { | |
| "larsCode": 196, | |
| "title": "Business administrator (level 3)", | |
| "level": 3, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "CHESTERFIELD COLLEGE", | |
| "ukprn": 10001378, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000028438", | |
| "vacancyReference": "2000028438", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Property Maintenance Operative Apprentice", | |
| "description": "\u003Cp\u003EYou will partake in day-to-day general labour, assisting in all areas of maintenance and upkeep of the care home. Assist with work within the nursing home. Following a list of requirements of what needs to be done for that day. You will require some ongoing mandatory training for fire safety and health and safety, which the care home will provide.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T11:06:03.103Z", | |
| "closingDate": "2026-06-30T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£12,480 a year", | |
| "workingWeekDescription": "Flexible hours, to be confirmed." | |
| }, | |
| "hoursPerWeek": 30, | |
| "expectedDuration": "2 Years 3 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Doddington", | |
| "addressLine3": "Kidderminster", | |
| "postcode": "DY14 0HJ", | |
| "latitude": 52.38287, | |
| "longitude": -2.56351 | |
| } | |
| ], | |
| "distance": 29.3333582738114, | |
| "employerName": "DODDINGTON CARE LIMITED ", | |
| "employerWebsiteUrl": "https://www.doddingtonlodge.com", | |
| "course": { | |
| "larsCode": 23, | |
| "title": "Property maintenance operative (level 2)", | |
| "level": 2, | |
| "route": "Construction and the built environment", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "NCG", | |
| "ukprn": 10004599, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030381", | |
| "vacancyReference": "2000030381", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Office Administration Apprentice", | |
| "description": "\u003Cp\u003ESupport the team with general administrative tasks including answering incoming calls, processing orders, maintaining and updating records and providing excellent customer service to clients.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T11:15:00.297Z", | |
| "closingDate": "2026-06-30T23:59:59Z", | |
| "startDate": "2026-08-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "Monday to Friday, 08:30 - 17:00" | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year 9 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "SEVERN HOUSE", | |
| "addressLine2": "SANDY LANE INDUSTRIAL ESTATE", | |
| "addressLine3": "STOURPORT ON SEVERN", | |
| "postcode": "DY13 9QB", | |
| "latitude": 52.32863, | |
| "longitude": -2.26535 | |
| } | |
| ], | |
| "distance": 19.5359337617915, | |
| "employerName": "HINGLEY & CALLOW OILS LIMITED", | |
| "course": { | |
| "larsCode": 196, | |
| "title": "Business administrator (level 3)", | |
| "level": 3, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "NCG", | |
| "ukprn": 10004599, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030386", | |
| "vacancyReference": "2000030386", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Health and Safety Apprentice", | |
| "description": "\u003Cp\u003EThe apprentice will support the Safety Health and Environmental Team with day-to-day advice and guidance to the broader business. The role is essential in ensuring that all Safety Health and Environmental policies and procedures are adhered to and kept up to date across production facilities and construction sites.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T11:30:44.677Z", | |
| "closingDate": "2026-06-01T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£18,000 a year", | |
| "workingWeekDescription": "Monday - Thursday, 8:00am - 4.30pm.\r\n\r\nFriday, 7.30am - 12.30pm." | |
| }, | |
| "hoursPerWeek": 36, | |
| "expectedDuration": "4 Years", | |
| "addresses": [], | |
| "employerName": "WILLIAM HARE LIMITED", | |
| "employerWebsiteUrl": "https://www.hare.com/", | |
| "employerContactName": "Recruitment", | |
| "employerContactEmail": "recruitment@hare.com", | |
| "course": { | |
| "larsCode": 260, | |
| "title": "Safety, health and environment technician (level 3)", | |
| "level": 3, | |
| "route": "Protective services", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "PENSHAW VIEW TRAINING LIMITED", | |
| "ukprn": 10038931, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030411", | |
| "vacancyReference": "2000030411", | |
| "isNationalVacancy": true, | |
| "isNationalVacancyDetails": "\u003Cp\u003EThis apprenticeship role will be based in North London or the surrounding northern areas to ensure suitable access to central London, as well as the ability to travel to Birmingham for a project commencing in the second or third quarter of 2027.\u003C/p\u003E\r\n\u003Cp\u003EPlease note that this is a mobile position. While you will have access to our London office, the role will involve working across a range of projects and sites.\u003C/p\u003E" | |
| }, | |
| { | |
| "title": "General Farmworker Apprentice", | |
| "description": "\u003Cp\u003EFamily farm, milking 200 cows through modern parlour twice a day. Rearing replacement heifers, sheep and beef finishing unit. 6.30am starts, no weekend work. \u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T11:33:33.913Z", | |
| "closingDate": "2026-07-30T23:59:59Z", | |
| "startDate": "2026-08-06T00:00:00Z", | |
| "wage": { | |
| "wageType": "NationalMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 to £26,436.80 a year", | |
| "workingWeekDescription": "Shifts to be discussed at interview stage." | |
| }, | |
| "hoursPerWeek": 40, | |
| "expectedDuration": "1 Year 6 Months", | |
| "addresses": [ | |
| { | |
| "addressLine1": "NEWTOWN VILLA FARM", | |
| "addressLine2": "NEWTOWN", | |
| "addressLine3": "WEM", | |
| "addressLine4": "SHREWSBURY", | |
| "postcode": "SY4 5NU", | |
| "latitude": 52.88121, | |
| "longitude": -2.77934 | |
| } | |
| ], | |
| "distance": 45.6749254994971, | |
| "employerName": "MARK ALICE & JOHN LOKIER", | |
| "course": { | |
| "larsCode": 621, | |
| "title": "General farm worker (level 2)", | |
| "level": 2, | |
| "route": "Agriculture, environmental and animal care", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Intermediate", | |
| "providerName": "REASEHEATH COLLEGE", | |
| "ukprn": 10005404, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000029877", | |
| "vacancyReference": "2000029877", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| }, | |
| { | |
| "title": "Hospitality Degree Apprentice", | |
| "description": "\u003Cp\u003EWe’re offering an exciting 3-year Hospitality Apprentice Programme where you’ll gain real-world experience in a dynamic industry while working towards a BA (Hons) Degree.\u003C/p\u003E", | |
| "numberOfPositions": 8, | |
| "postedDate": "2026-05-07T13:11:43.22Z", | |
| "closingDate": "2026-09-15T23:59:59Z", | |
| "startDate": "2026-10-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "5 days a week Monday - Sunday\r\nWeekday AM shifts typically: 09.00 - 17.00.\r\nWeekday PM shifts typically: 17.00 - 00.00.\r\nWeekend AM shifts typically: 09.00 - 18.00.\r\nWeekend PM shifts typically: 16.00 - 01.00." | |
| }, | |
| "hoursPerWeek": 35, | |
| "expectedDuration": "3 Years", | |
| "addresses": [], | |
| "applicationUrl": "https://careers.hollywoodbowlgroup.co.uk/job/centre-management-roles/hospitality-degree-apprentice/10656", | |
| "employerName": "HOLLYWOOD BOWL GROUP PLC", | |
| "employerWebsiteUrl": "https://careers.hollywoodbowlgroup.co.uk/job/centre-management-roles/hospitality-degree-apprentice/1", | |
| "course": { | |
| "larsCode": 55, | |
| "title": "Chartered manager (degree) (level 6)", | |
| "level": 6, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Degree", | |
| "providerName": "UNIVERSITY CENTRE QUAYSIDE LIMITED", | |
| "ukprn": 10025197, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030434", | |
| "vacancyReference": "2000030434", | |
| "isNationalVacancy": true, | |
| "isNationalVacancyDetails": "\u003Cp\u003EYou will be based in one of our 75 bowling centres across the UK.\u003C/p\u003E" | |
| }, | |
| { | |
| "title": "Hospitality Degree Apprentice", | |
| "description": "\u003Cp\u003EWe’re offering an exciting 3-year Hospitality Apprentice Programme where you’ll gain real-world experience in a dynamic industry while working towards a BA (Hons) Degree.\u003C/p\u003E", | |
| "numberOfPositions": 8, | |
| "postedDate": "2026-05-07T13:12:28.42Z", | |
| "closingDate": "2026-08-31T23:59:59Z", | |
| "startDate": "2026-09-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "Custom", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£16,640 a year", | |
| "workingWeekDescription": "5 days a week, Monday - Sunday.\r\n\r\nWeekday AM shifts typically: 09.00 - 17.00.\r\n\r\nWeekday PM shifts typically: 17.00 - 00.00.\r\n\r\nWeekend AM shifts typically: 09.00 - 18.00.\r\n\r\nWeekend PM shifts typically: 16.00 - 01.00." | |
| }, | |
| "hoursPerWeek": 35, | |
| "expectedDuration": "3 Years", | |
| "addresses": [], | |
| "applicationUrl": "https://careers.hollywoodbowlgroup.co.uk/job/centre-management-roles/hospitality-degree-apprentice/10656", | |
| "employerName": "HOLLYWOOD BOWL GROUP PLC", | |
| "employerWebsiteUrl": "https://careers.hollywoodbowlgroup.co.uk/job/centre-management-roles/hospitality-degree-apprentice/1", | |
| "course": { | |
| "larsCode": 55, | |
| "title": "Chartered manager (degree) (level 6)", | |
| "level": 6, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Degree", | |
| "providerName": "ANGLIA RUSKIN UNIVERSITY", | |
| "ukprn": 10000291, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030424", | |
| "vacancyReference": "2000030424", | |
| "isNationalVacancy": true, | |
| "isNationalVacancyDetails": "\u003Cp\u003EYou will be based in one of our 75 bowling centres across the UK.\u003C/p\u003E" | |
| }, | |
| { | |
| "title": "Steel Sales Administration Apprentice", | |
| "description": "\u003Cp\u003EThe USP team is expanding and is now looking to recruit a new apprentice in their sales department. They are on the lookout for individuals wanting to get involved and make an impact on the success of their business. If you are ambitious and driven with a will to succeed, this could be for you.\u003C/p\u003E", | |
| "numberOfPositions": 1, | |
| "postedDate": "2026-05-07T13:38:08.137Z", | |
| "closingDate": "2026-06-30T23:59:59Z", | |
| "startDate": "2026-07-01T00:00:00Z", | |
| "wage": { | |
| "wageType": "ApprenticeshipMinimum", | |
| "wageUnit": "Annually", | |
| "wageAdditionalInformation": "£15,808 a year", | |
| "workingWeekDescription": "Monday - Thursday, 08.30 - 17.00. \r\nFriday, 08.30 - 15.00." | |
| }, | |
| "hoursPerWeek": 38, | |
| "expectedDuration": "1 Year", | |
| "addresses": [ | |
| { | |
| "addressLine1": "Gibbons Industrial Park,", | |
| "addressLine2": "Pensnett", | |
| "addressLine3": "Kingswinford", | |
| "postcode": "DY6 8XF", | |
| "latitude": 52.50051, | |
| "longitude": -2.14762 | |
| } | |
| ], | |
| "distance": 10.7058272269927, | |
| "employerName": "USP STEELS LIMITED ", | |
| "employerWebsiteUrl": "https://www.uspsteels.com/", | |
| "course": { | |
| "larsCode": 196, | |
| "title": "Business administrator (level 3)", | |
| "level": 3, | |
| "route": "Business and administration", | |
| "type": "Standard" | |
| }, | |
| "apprenticeshipLevel": "Advanced", | |
| "providerName": "JUNIPER TRAINING LIMITED", | |
| "ukprn": 10003529, | |
| "isDisabilityConfident": false, | |
| "vacancyUrl": "https://www.findapprenticeship.service.gov.uk/apprenticeship/reference/2000030455", | |
| "vacancyReference": "2000030455", | |
| "isNationalVacancy": false, | |
| "isNationalVacancyDetails": "" | |
| } | |
| ], | |
| "total": 4533, | |
| "totalFiltered": 496, | |
| "totalPages": 17 | |
| } | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment