Discover/Indeed API
live

Indeed APIindeed.co.uk

Search Indeed UK job listings, retrieve full job descriptions, application links, and company profiles via a clean REST API with 4 endpoints.

Endpoint health
verified 7d ago
get_job_application_link
get_job_details
search_jobs
get_company_profile
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the Indeed API?

The Indeed UK API gives developers access to 4 endpoints covering job search, job details, application links, and company profiles from indeed.co.uk. search_jobs returns paginated listings with title, company, location, salary, and a job_key that feeds into get_job_details and get_job_application_link. Each response is structured JSON, making it straightforward to build job boards, salary trackers, or recruitment tools against live UK job data.

Try it
Job title or keywords to search for (e.g. developer, apprenticeship, data engineer)
Results offset for pagination (increments of 10)
Search radius in miles from the specified location
Minimum salary filter value (e.g. 50000)
Location to search in (e.g. London, Manchester, United Kingdom)
api.parse.bot/scraper/d3daa2ce-2329-43b9-8d7c-fa97d94fcd74/<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/d3daa2ce-2329-43b9-8d7c-fa97d94fcd74/search_jobs?query=developer&location=London' \
  -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 indeed-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.

"""Walkthrough: Indeed UK SDK — search jobs, drill into details, check company profiles."""
from parse_apis.indeed_uk_job_scraper_api import IndeedUK, NotFound

client = IndeedUK()

# Search for developer jobs in London, capped at 5 results
for job in client.jobs.search(query="developer", location="London", limit=5):
    print(job.title, job.company, job.salary)

# Drill into the first result for full details
job = client.jobs.search(query="data engineer", location="Manchester", limit=1).first()
if job:
    detail = job.details()
    print(detail.title, detail.salary, detail.apply_link)

    # Get just the application link
    app = job.application_link()
    print(app.apply_link)

# Fetch a company profile by slug
try:
    company = client.companies.get(company_slug="Amazon")
    print(company.name, company.rating, company.review_count, company.happiness_score)
except NotFound as exc:
    print(f"Company not found: {exc}")

print("exercised: jobs.search / job.details / job.application_link / companies.get")
All endpoints · 4 totalmissing one? ·

Full-text search over Indeed UK job listings. Returns paginated results with 15 jobs per page. Pagination uses an offset-based start parameter in increments of 10. Each job includes a job_key usable with get_job_details and get_job_application_link.

Input
ParamTypeDescription
querystringJob title or keywords to search for (e.g. developer, apprenticeship, data engineer)
startintegerResults offset for pagination (increments of 10)
radiusintegerSearch radius in miles from the specified location
salarystringMinimum salary filter value (e.g. 50000)
locationstringLocation to search in (e.g. London, Manchester, United Kingdom)
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job objects with keys: job_key, title, company, location, salary, url, date",
    "query": "string, the search query used",
    "location": "string, the location searched",
    "total_results": "integer, total number of matching jobs"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "url": "https://uk.indeed.com/viewjob?jk=0cc990fc68c74f16",
          "date": "9 days ago",
          "title": "Senior Software Engineer (Technical Exploitation)",
          "salary": "£50,686 - £55,157 a year",
          "company": "HM Revenue and Customs",
          "job_key": "0cc990fc68c74f16",
          "location": "Stratford"
        }
      ],
      "query": "developer",
      "location": "London",
      "total_results": 2175
    },
    "status": "success"
  }
}

About the Indeed API

Job Search and Listing Data

The search_jobs endpoint accepts free-text query and location parameters alongside numeric filters for radius (miles) and salary (minimum value). It returns up to 15 jobs per page with a total_results count for driving pagination. Pagination is offset-based via the start parameter in increments of 10. Each result object includes job_key, title, company, location, salary, url, and date — enough to display a full job listing without a second call.

Job Details and Application Links

get_job_details takes a job_key from search results and returns the full job description as an HTML string, along with title, company, location, salary, and an apply_link. Fields like salary and apply_link may be null when the original posting omits them. If you only need the application URL, get_job_application_link returns just the apply_link field for a given job_key, avoiding the overhead of fetching the full description.

Company Profiles

get_company_profile retrieves employer-level data using a company_slug drawn from the Indeed company URL path (e.g. Amazon, Google). The response includes an about object with description, industry, founded year, headquarters, revenue range, and websiteUrl, plus aggregate signals: rating (out of 5), review_count, and happiness_score (percentage). These fields are independent of any specific job posting, making them useful for employer research features or enriching job listings with company context.

Reliability & maintenanceVerified

The Indeed API is a managed, monitored endpoint for indeed.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when indeed.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 indeed.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
7d ago
Latest check
4/4 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
  • Build a UK-focused job board filtered by location, radius, and minimum salary using search_jobs.
  • Aggregate salary data by job title and region using the salary field across paginated search_jobs results.
  • Enrich a recruiting CRM by pulling full job descriptions via get_job_details for keyword extraction or classification.
  • Surface direct application URLs in a browser extension or app using get_job_application_link.
  • Compare employer ratings and happiness scores across companies using get_company_profile.
  • Track new job postings for specific keywords and locations by polling search_jobs with a fixed query and location.
  • Populate an employer directory with industry, founding year, headquarters, and revenue range from get_company_profile.
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 Indeed have an official developer API?+
Indeed has historically offered a Publisher API for job search, but it has been restricted and largely closed to new partners. Access is not generally available to independent developers. This Parse API provides structured access to Indeed UK data without requiring publisher credentials.
What does `search_jobs` return, and how does pagination work?+
Each page returns up to 15 job objects, each containing job_key, title, company, location, salary, url, and date, plus a total_results count for the full query. Pagination is controlled by the start parameter, which should be incremented in steps of 10 to advance through result pages.
Are job review text and individual reviewer comments included in `get_company_profile`?+
Not currently. The endpoint returns aggregate signals — rating, review_count, and happiness_score — along with the about object. Individual review text and reviewer breakdowns are not part of the response. You can fork this API on Parse and revise it to add an endpoint targeting individual review content.
Can I filter `search_jobs` by job type, such as full-time, part-time, or contract?+
Not currently. The available filters are query, location, radius, and salary. Job type filtering is not an exposed parameter. You can fork this API on Parse and revise it to add a job-type filter to the search endpoint.
When might `apply_link` or `salary` be null in a job response?+
Both fields are nullable. salary is null when the original posting does not list compensation. apply_link is null when the job links to an external site that Indeed does not surface as a direct URL, or when no external application link is associated with the posting. get_job_application_link will also return null in these cases.
Page content last updated . Spec covers 4 endpoints from indeed.co.uk.
Related APIs in JobsSee all →
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.
indeed.com API
Search and discover job opportunities on Indeed while accessing detailed job descriptions, company profiles, and salary insights all in one place. Get comprehensive career information including specific compensation data to help you find and evaluate the right job opportunity for you.
indeed.co.in API
Search for jobs across Indeed India and access detailed information about listings, companies, salaries, and locations to help with your job hunt. Get autocomplete suggestions for job titles and places, plus salary guides and company details to make informed career decisions.
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
in.indeed.com API
in.indeed.com API
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.
de.indeed.com API
Access data from de.indeed.com.
fr.indeed.com API
Search job listings and get detailed information about positions, companies, and alternance opportunities on Indeed France, all in one place. Access comprehensive company profiles and job details to find your next career move or research employers.