Discover/GetMyFirstJob API
live

GetMyFirstJob APIgetmyfirstjob.co.uk

Access UK apprenticeship and early careers listings, employer profiles, occupation categories, and location filters from GetMyFirstJob.co.uk via 5 structured endpoints.

Endpoint health
verified 4d ago
get_occupation_categories
search_opportunities
get_employers_list
get_location_filters
get_opportunity_details
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the GetMyFirstJob API?

This API exposes 5 endpoints covering UK apprenticeship and early career opportunities from GetMyFirstJob.co.uk, including full vacancy details, occupation categories, employer listings, and location filters. The search_opportunities endpoint lets you query by keyword or category path and returns title, employer, wages, location, level, and a direct link for each result. The get_opportunity_details endpoint retrieves structured fields including application deadline, training provider, posted date, and full job description.

Try it
Keyword to filter results by title, description, employer, or category. Applied client-side to the pre-rendered listings.
Category path from get_occupation_categories results (e.g. 'discover-opportunities/occupation-categories/details/computing-technology-and-digital/5'). When provided, fetches listings for that category.
api.parse.bot/scraper/5ad1bc88-a5db-4792-858a-b25a7e335fc9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5ad1bc88-a5db-4792-858a-b25a7e335fc9/search_opportunities?query=apprentice&category_path=discover-opportunities%2Foccupation-categories%2Fdetails%2Fadministration%2F1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace getmyfirstjob-co-uk-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.getmyfirstjob_api import GetMyFirstJob, Opportunity, OpportunityDetail, Category, Employer, Location, OpportunityNotFound

client = GetMyFirstJob()

# Browse available occupation categories
for category in client.categories.list():
    print(category.name, category.path)

# Search for opportunities with a keyword filter
for opp in client.opportunities.search(query="digital"):
    print(opp.title, opp.employer, opp.location, opp.level)

# Get full details for a specific opportunity
detail = opp.details()
print(detail.title, detail.employer, detail.wages, detail.apply_by, detail.provider)

# List featured employers
for employer in client.employers.list():
    print(employer.name, employer.path)

# List locations
for loc in client.locations.list():
    print(loc.name, loc.path)
All endpoints · 5 totalmissing one? ·

Search for apprenticeship and early career opportunities. Returns listings from the main search page or a specific occupation category page. An optional keyword filter is applied client-side to the returned results. Without category_path, returns all listings from the main search page (up to 10 SSR-rendered results). With category_path, returns listings for that specific occupation category.

Input
ParamTypeDescription
querystringKeyword to filter results by title, description, employer, or category. Applied client-side to the pre-rendered listings.
category_pathstringCategory path from get_occupation_categories results (e.g. 'discover-opportunities/occupation-categories/details/computing-technology-and-digital/5'). When provided, fetches listings for that category.
Response
{
  "type": "object",
  "fields": {
    "total": "integer total count of returned opportunities",
    "url_used": "string URL that was fetched",
    "opportunities": "array of opportunity objects with title, employer, description, link, and optional category, wages, location, level, postcode, posted_date, closes fields"
  },
  "sample": {
    "data": {
      "total": 10,
      "url_used": "https://www.getmyfirstjob.co.uk/search",
      "opportunities": [
        {
          "link": "opportunity/8ca49360-c5d1-4342-890e-5855283efb5f/d3dea269-2497-4b1f-8e2e-63985b5b0fdd",
          "level": "Advanced Level 3",
          "title": "L3 Digital Marketing & AI Executive Apprentice",
          "closes": "26 Jun",
          "category": "Creative and media",
          "employer": "MTL Global Ltd",
          "location": "Aylesford",
          "postcode": "ME20 7HP",
          "description": "Green Edge 360 is looking for a proactive Digital Marketing & AI Executive...",
          "posted_date": "10 Jun"
        }
      ]
    },
    "status": "success"
  }
}

About the GetMyFirstJob API

Searching Opportunities

The search_opportunities endpoint returns an array of opportunity objects from GetMyFirstJob.co.uk's main listing or a specific occupation category page. Each object includes title, employer, description, link, and optional fields: category, wages, location, and level. You can pass a query string to filter results by title, description, employer, or category client-side, and a category_path (sourced from get_occupation_categories) to scope results to a specific industry or occupation type. The response also includes a total count and the url_used for reference.

Vacancy Details

get_opportunity_details accepts a url_path from search_opportunities results and returns the full record for a single vacancy: title, employer, location, level, wages, apply_by (application deadline), posted_date (ISO format), provider (training provider), description (full job description text), and a metadata object containing additional key-value fields extracted from the detail page. If a vacancy is no longer available, the endpoint returns a stale_input flag rather than an error.

Categories, Locations, and Employers

get_occupation_categories returns a list of objects with name and path fields representing industries and occupations available on the platform. The path values are directly usable as category_path in search_opportunities. get_location_filters similarly returns UK cities and areas with their name and path — note these are informational pages and do not return pre-rendered job listings directly. get_employers_list returns featured employers with name and path to their detail pages.

Reliability & maintenanceVerified

The GetMyFirstJob API is a managed, monitored endpoint for getmyfirstjob.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when getmyfirstjob.co.uk changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official getmyfirstjob.co.uk API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate UK apprenticeship listings by occupation category for a careers discovery platform
  • Monitor application deadlines (apply_by) across live vacancies to alert prospective applicants
  • Build an employer directory of companies offering apprenticeships, sourced from get_employers_list
  • Filter entry-level roles by level and wages to surface opportunities matching a candidate's criteria
  • Map apprenticeship availability across UK regions using location data from get_location_filters combined with search results
  • Track new postings by comparing posted_date fields from recurring search_opportunities calls
  • Identify training providers associated with specific vacancies via the provider field in get_opportunity_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does GetMyFirstJob.co.uk have an official developer API?+
GetMyFirstJob.co.uk does not publish an official developer API or public data feed. This Parse API is the structured way to access the platform's listings and employer data programmatically.
What does `search_opportunities` return when no `category_path` is provided?+
Without a category_path, the endpoint returns listings from the main search page across all categories. Each result includes title, employer, description, and link, with category, wages, location, and level included where available. Passing a query string filters these results by matching against title, description, employer, or category.
Can the API return employer profile details beyond the name and path?+
get_employers_list currently returns each employer's name and path only — it does not expose full employer profiles, company descriptions, or contact information. You can fork this API on Parse and revise it to add an employer detail endpoint that fetches the full profile page for a given path.
Does the API support pagination for large search result sets?+
The current endpoints do not expose pagination parameters. Results reflect what is returned from the target page in a single response. You can fork this API on Parse and revise it to add paginated fetching for searches that span multiple result pages.
What happens when a vacancy has been removed from the site?+
If the vacancy linked by a url_path is no longer available, get_opportunity_details returns a stale_input flag in the response rather than throwing an error. This lets you detect and handle expired listings in your application logic without breaking a processing pipeline.
Page content last updated . Spec covers 5 endpoints from getmyfirstjob.co.uk.
Related APIs in JobsSee all →
notgoingtouni.co.uk API
Search and discover apprenticeship opportunities across sectors and companies on NotGoingToUni.co.uk, filtering by opportunity types and viewing detailed information about specific roles. Browse featured apprenticeships and explore available sectors and employers to find the right career path.
findapprenticeship.service.gov.uk API
Search and browse live apprenticeship vacancies across the UK, filter opportunities by location and job type, and view detailed information about specific positions to find the right apprenticeship match. Access comprehensive listing counts and filter options to narrow down your search.
totaljobs.com API
Search and browse job listings from across the UK on TotalJobs, then access detailed information about specific positions including requirements, salary, and application details. Quickly compare opportunities and find roles that match your criteria.
indeed.co.uk API
Search for jobs across Indeed UK and retrieve detailed information including job listings, application links, and company profiles. Access comprehensive job data to compare opportunities, learn about employers, and find direct application pathways.
uk.indeed.com API
Search for job listings across Indeed UK and retrieve complete job details including descriptions, requirements, salary information, and application links. Filter by job type, experience level, location, remote preference, and more to find relevant opportunities.
ausbildung.de API
Search and browse apprenticeship (Ausbildung) listings on ausbildung.de. Retrieve job posting details, explore the full catalog of recognized training professions, and look up salary and compensation data for any apprenticeship career.
poslovi.infostud.com API
Search and browse job listings from Serbia's top job board, view detailed job information with employer profiles and salary benchmarks. Filter opportunities by job categories and discover insights about employers hiring on Infostud.
jobs.ashbyhq.com API
Access company information, job listings, and detailed job postings from Ashby-hosted job boards, with the ability to search opportunities by keyword or department. Retrieve application forms and all relevant hiring details to streamline your job search process.