# Guardian Jobs Search Scraper (`jobsapi/guardian-jobs-search-scraper`) Actor

Scrape job listings from Guardian Jobs (jobs.theguardian.com), the UK job board from The Guardian newspaper. Extract job titles, companies, locations, salary ranges, job types, and descriptions for UK recruitment intelligence.

- **URL**: https://apify.com/jobsapi/guardian-jobs-search-scraper.md
- **Developed by:** [Jobs API](https://apify.com/jobsapi) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 job details

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Guardian Jobs Search Scraper

> An [Apify Actor](https://apify.com/jobsapi/guardian-jobs-search-scraper) that scrapes publicly listed job postings from **[Guardian](https://example.com)** - Scrape job listings from Guardian Jobs (jobs.theguardian.com), the UK job board from The Guardian newspaper. Extract job titles, companies, locations, salary ranges, job types, and descriptions for UK recruitment intelligence..

The Actor navigates Guardian's public job-search results, opens each result detail page to enrich the record, normalises everything into a single rich structured schema, and pushes one record per job into the Actor's default dataset for download or downstream integration.

***

### Table of Contents

- [What is Guardian?](#what-is-guardian)
- [What does the Actor scrape?](#what-does-the-actor-scrape)
- [Main target URL](#main-target-url)
- [Input schema](#input-schema)
- [Output / dataset schema](#output--dataset-schema)
- [Example input](#example-input)
- [Example output record](#example-output-record)
- [Responsible use](#responsible-use)
- [Related jobs scrapers](#related-jobs-scrapers)

***

### What is Guardian?

**Guardian** is Scrape job listings from Guardian Jobs (jobs.theguardian.com), the UK job board from The Guardian newspaper. Extract job titles, companies, locations, salary ranges, job types, and descriptions for UK recruitment intelligence.

This Actor targets **Guardian**'s public job-search results and enriches each result with the canonical Guardian detail page.

### What does the Actor scrape?

Scrape job listings from Guardian Jobs (jobs.theguardian.com), the UK job board from The Guardian newspaper. Extract job titles, companies, locations, salary ranges, job types, and descriptions for UK recruitment intelligence.

The actor maps listing fields such as:

- `position`
- `jobId`
- `title`
- `company`
- `location`
- `salary`
- `contractType`
- `workingHours`
- `employmentTypes`
- `sectors`

Primary source URL: `https://jobs.theguardian.com`

### Main target URL

The actor scrapes from the following base URL:

```text
https://jobs.theguardian.com
```

Request modifiers come from fields: query, location, radiusMiles, maxItems, maxPages, proxyConfiguration.

### Input schema

The Actor accepts the following input (defined in `.actor/input_schema.json`):

| Field | Type | Required | Default | Constraints | Description |
| --- | --- | --- | --- | --- | --- |
| `query` | `string` | No | `"software engineer"` | - | Job search query (e.g. software engineer, marketing, nurse) |
| `location` | `string` | No | `"London"` | - | Location to search in (e.g. London, Manchester, remote) |
| `radiusMiles` | `integer` | No | `30` | >= 0; <= 100 | Radius around the resolved Guardian Jobs location. |
| `maxItems` | `integer` | No | `3` | - | Maximum number of job listings to scrape |
| `maxPages` | `integer` | No | `5` | >= 1; <= 100 | Maximum pages to inspect while collecting relevant jobs. |
| `proxyConfiguration` | `object` | No | `{"useApifyProxy":false}` | - | Proxy configuration for scraping |

### Example input

```json
{
  "query": "software engineer",
  "location": "London",
  "radiusMiles": 30,
  "maxItems": 3,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

### Output / dataset schema

Each record follows `.actor/dataset_schema.json` and includes the properties below.

| Field | Type | Required |
| --- | --- | --- |
| `position` | `integer` | Yes |
| `jobId` | `string` | Yes |
| `title` | `string` | Yes |
| `company` | `object` | Yes |
| `location` | `object` | Yes |
| `salary` | `object` | Yes |
| `contractType` | `string` | No |
| `workingHours` | `string` | No |
| `employmentTypes` | `array` | No |
| `sectors` | `array` | No |
| `employeeBenefits` | `array` | No |
| `datePosted` | `string` | No |
| `validThrough` | `string` | No |
| `closingDateText` | `string` | No |
| `directApply` | `boolean` | No |
| `description` | `string` | Yes |
| `descriptionHtml` | `string` | No |
| `sections` | `array` | No |
| `responsibilities` | `array` | No |
| `qualifications` | `array` | No |
| `skills` | `array` | No |
| `contacts` | `object` | No |
| `jobDetails` | `array` | No |
| `applicationLinks` | `array` | No |
| `applicationUrl` | `string` | Yes |
| `supportingDocuments` | `array` | No |
| `url` | `string` | Yes |
| `source` | `string` | Yes |
| `searchQuery` | `string` | Yes |
| `searchLocation` | `string` | No |
| `searchRadiusMiles` | `integer` | No |
| `structuredData` | `object` | Yes |
| `scrapedAt` | `string` | Yes |

### Example output record

```json
{
  "jobId": "10147599",
  "title": "Software Engineer / AI Engineer",
  "company": {
    "name": "RELX"
  },
  "location": {
    "text": "London (West)"
  },
  "salary": {
    "text": "Competitive"
  },
  "contractType": "Permanent",
  "workingHours": "Full time",
  "employmentTypes": [
    "FULL_TIME",
    "Permanent",
    "Full time"
  ],
  "sectors": [
    "Technology & IT",
    "AI"
  ],
  "datePosted": "2026-07-12T23:00:00.000Z",
  "validThrough": "2026-08-12T22:59:59.000Z",
  "closingDateText": "12 Aug 2026",
  "directApply": false,
  "description": "Software Engineer /AI Engineer Are you excited about building intelligent systems powered by innovative AI technologies?Do you enjoy creating solutions that turn complex data into impactful outcomes?About the team:Embedded Innovation Teams are cross-functional squads embedded within our segments to rapidly turn internal AI experimentation into validated, reusable solutions, building the capabilities we need to deliver customer value and growth. We work problem-first rather than tool-first, directly inside segment and function teams, improving the internal workflows that help our people deliver better outcomes for customers, faster.About the role: As a Software Engineer / AI Engineer, you will build and ship AI-powered features as part of a cross-functional Innovation Squad, working inside a business function. You will deliver the set technical direction to production standard, working autonomously within a defined problem, building and testing tool use, retrieval pipelines and agent workflows, integrating AI capabilities into enterprise systems, and contributing to evaluation, observability and guardrails.You will hold a high bar on code quality, flag risks and blockers early, and work alongside host-function stakeholders to make sure what you build fits real workflows, not assumed ones. You'll also support handover and capability-building so the solution is owned and operable after the squad moves on.Key Responsibilities: Build prototypes and proofs of concept and ship agentic AI solutions to production standard within a defined technical approach. Implement and test tool use, retrieval pipelines, and agent workflows. Contribute to evaluation, observability and guardrails for agentic systems. Integrate AI capabilities into existing enterprise workflows and systems. Maintain high code quality and documentation so patterns can be reused. Flag technical risks and blockers early. Interface with technical peers to finalise requirements and complete moderately complex bug fixes. Build solutions for reuse, contributing to patterns, reference implementations, and starter kits so work done in one function can be picked up by another. Instrument solutions to capture outcome data against baselines. Work alongside host-function stakeholders to ensure the build fits real workflows, not assumed ones. Support handover and capability-building in the host function so the solution is owned and operable after the squad moves on. Keep abreast of new technology developments. Take on related responsibilities as the squad's needs evolve. Requirements: Engineering experience: 3+ years in software engineering, with hands-on experience building LLM-powered applications in production (RAG, tool-augmented agents or agentic workflows). Education: BS in Engineering, Computer Science, or equivalent. Ways of working: Comfortable working autonomously within a defined problem and pushing back when something doesn't make sense, and delivering in short, time-boxed cycles where validated outcomes matter more than perfect solutions. Agentic AI / LLMs: Building RAG pipelines, tool-augmented agents and agentic workflows; familiar with prompt engineering, context management, evaluation and observability. Agent fundamentals: Understands how agents use memory, tools, and retrieval to complete multi-step tasks. Enterprise integration: Integrating AI into existing systems via APIs and data pipelines. Cloud: AWS, Azure, or GCP. Delivery: CI/CD, modern SDLC, TDD, and code review. Data: Working with relational, columnar and vector stores, grounded in sound data-modelling principles. Languages: Python, Java, TypeScript/JavaScript, SQL and relevant AI SDKs. Communication: Clear written and verbal communication with technical peers and stakeholders. Measurement: Instrumenting solutions to capture usage, productivity, and quality metrics against established baselines. Why Join Us?Join our team and contribute to a culture of innovation, collaboration, and excellence. If you are ready to advance your career and make a significant impact, we encourage you to apply.Work in a way that works for youWe promote a healthy work/life balance across the organization. We offer an appealing working prospect for our people. With numerous wellbeing initiatives, shared parental leave, study assistance, and sabbaticals, we will help you meet your immediate responsibilities and your long-term goals. Working flexible hours - flexing the times when you work in the day to help you fit everything in and work when you are the most productive. Working for youWe know that your well-being and happiness are key to a long and successful career. These are some of the benefits we are delighted to offer: Comprehensive Pension Plan Generous vacation entitlement and option for sabbatical leave Maternity, Paternity, Adoption, and Family Care leave Personal Choice budget Internal communities and networks Various employee discounts Recruitment introduction reward Employee Assistance Program (global) About the business- A global leader in information and analytics, we help researchers and healthcare professionals advance science and improve health outcomes for the benefit of society. Building on our publishing heritage, we combine quality information and vast data sets with analytics to support visionary science and research, health education, and interactive learning, as well as exceptional healthcare and clinical practice. At Elsevier, your work contributes to the world’s grand challenges and a more sustainable future. We harness innovative technologies to support science and healthcare to partner for a better world.We know your well-being and happiness are key to a long and successful career. We are delighted to offer country specific benefits. Click here to access benefits specific to your location.We are committed to providing a fair and accessible hiring process. If you have a disability or other need that requires accommodation or adjustment, please let us know by completing our Applicant Request Support Form or please contact 1-855-833-5120.Criminals may pose as recruiters asking for money or personal information. We never request money or banking details from job applicants. Learn more about spotting and avoiding scams here.Please read our Candidate Privacy Policy.We are an equal opportunity employer: qualified applicants are considered for and treated during employment without regard to race, color, creed, religion, sex, national origin, citizenship status, disability status, protected veteran status, age, marital status, sexual orientation, gender identity, genetic information, or any other characteristic protected by law.USA Job Seekers: EEO Know Your Rights.",
  "descriptionHtml": "<b> Software Engineer /</b><b>AI Engineer </b><br /><br /><b>Are </b><b>you excited about building intelligent systems powered by innovative AI technologies?<br />Do you enjoy creating solutions that turn complex data into impactful outcomes?</b><br /><br /><b>About the team:</b><br /><br />Embedded Innovation Teams are cross-functional squads embedded within our segments to rapidly turn internal AI experimentation into validated, reusable solutions, building the capabilities we need to deliver customer value and growth. We work problem-first rather than tool-first, directly inside segment and function teams, improving the internal workflows that help our people deliver better outcomes for customers, faster.<br /><br /><b>About the role: </b><br /><br />As a Software Engineer / AI Engineer, you will build and ship AI-powered features as part of a cross-functional Innovation Squad, working inside a business function. You will deliver the set technical direction to production standard, working autonomously within a defined problem, building and testing tool use, retrieval pipelines and agent workflows, integrating AI capabilities into enterprise systems, and contributing to evaluation, observability and guardrails.<br /><br />You will hold a high bar on code quality, flag risks and blockers early, and work alongside host-function stakeholders to make sure what you build fits real workflows, not assumed ones. You'll also support handover and capability-building so the solution is owned and operable after the squad moves on.<br /><br /><b>Key Responsibilities:</b><br /><ul> <li>Build prototypes and proofs of concept and ship agentic AI solutions to production standard within a defined technical approach.<br /></li> <li>Implement and test tool use, retrieval pipelines, and agent workflows.<br /></li> <li>Contribute to evaluation, observability and guardrails for agentic systems.<br /></li> <li>Integrate AI capabilities into existing enterprise workflows and systems.<br /></li> <li>Maintain high code quality and documentation so patterns can be reused.<br /></li> <li>Flag technical risks and blockers early.<br /></li> <li>Interface with technical peers to finalise requirements and complete moderately complex bug fixes.<br /></li> <li>Build solutions for reuse, contributing to patterns, reference implementations, and starter kits so work done in one function can be picked up by another.<br /></li> <li>Instrument solutions to capture outcome data against baselines.<br /></li> <li>Work alongside host-function stakeholders to ensure the build fits real workflows, not assumed ones.<br /></li> <li>Support handover and capability-building in the host function so the solution is owned and operable after the squad moves on.<br /></li> <li>Keep abreast of new technology developments.<br /></li> <li>Take on related responsibilities as the squad's needs evolve.<br /></li> </ul><br /><b>Requirements: </b><br /><ul> <li><b>Engineering experience: </b>3+ years in software engineering, with hands-on experience building LLM-powered applications in production (RAG, tool-augmented agents or agentic workflows).<br /></li> <li><b>Education: </b>BS in Engineering, Computer Science, or equivalent.<br /></li> <li><b>Ways of working: </b>Comfortable working autonomously within a defined problem and pushing back when something doesn't make sense, and delivering in short, time-boxed cycles where validated outcomes matter more than perfect solutions.<br /></li> <li><b>Agentic AI / LLMs: </b>Building RAG pipelines, tool-augmented agents and agentic workflows; familiar with prompt engineering, context management, evaluation and observability.<br /></li> <li><b>Agent fundamentals: </b>Understands how agents use memory, tools, and retrieval to complete multi-step tasks.<br /></li> <li><b>Enterprise integration: </b>Integrating AI into existing systems via APIs and data pipelines.<br /></li> <li><b>Cloud: </b>AWS, Azure, or GCP.<br /></li> <li><b>Delivery: </b>CI/CD, modern SDLC, TDD, and code review.<br /></li> <li><b>Data: </b>Working with relational, columnar and vector stores, grounded in sound data-modelling principles.<br /></li> <li><b>Languages: </b>Python, Java, TypeScript/JavaScript, SQL and relevant AI SDKs.<br /></li> <li><b>Communication: </b>Clear written and verbal communication with technical peers and stakeholders.<br /></li> <li><b>Measurement: </b>Instrumenting solutions to capture usage, productivity, and quality metrics against established baselines.<br /></li> </ul><br /><b>Why Join Us?</b><br /><br />Join our team and contribute to a culture of innovation, collaboration, and excellence. If you are ready to advance your career and make a significant impact, we encourage you to apply.<br /><br /><b>Work in a way that works for you</b><br /><br />We promote a healthy work/life balance across the organization. We offer an appealing working prospect for our people. With numerous wellbeing initiatives, shared parental leave, study assistance, and sabbaticals, we will help you meet your immediate responsibilities and your long-term goals.<br /><ul> <li>Working flexible hours - flexing the times when you work in the day to help you fit everything in and work when you are the most productive.<br /></li> </ul><br /><b>Working for you</b><br /><br />We know that your well-being and happiness are key to a long and successful career. These are some of the benefits we are delighted to offer:<br /><ul> <li>Comprehensive Pension Plan<br /></li> <li>Generous vacation entitlement and option for sabbatical leave<br /></li> <li>Maternity, Paternity, Adoption, and Family Care leave<br /></li> <li>Personal Choice budget<br /></li> <li>Internal communities and networks<br /></li> <li>Various employee discounts<br /></li> <li>Recruitment introduction reward<br /></li> <li>Employee Assistance Program (global)<br /></li> </ul><br /><b>About the business- </b><br /><br />A global leader in information and analytics, we help researchers and healthcare professionals advance science and improve health outcomes for the benefit of society. Building on our publishing heritage, we combine quality information and vast data sets with analytics to support visionary science and research, health education, and interactive learning, as well as exceptional healthcare and clinical practice. At Elsevier, your work contributes to the world’s grand challenges and a more sustainable future. We harness innovative technologies to support science and healthcare to partner for a better world.<br /><br /><b>We know your well-being and happiness are key to a long and successful career. We are delighted to offer country specific benefits. Click </b> <b>here</b><b> to access benefits specific to your location.</b><br /><br />We are committed to providing a fair and accessible hiring process. If you have a disability or other need that requires accommodation or adjustment, please let us know by completing our Applicant Request Support Form or please contact 1-855-833-5120.<br /><br /><b>Criminals may pose as recruiters asking for money or personal information. We never request money or banking details from job applicants. Learn more about spotting and avoiding scams </b> <b>here</b><b>.</b><br /><br />Please read our Candidate Privacy Policy.<br /><br />We are an equal opportunity employer: qualified applicants are considered for and treated during employment without regard to race, color, creed, religion, sex, national origin, citizenship status, disability status, protected veteran status, age, marital status, sexual orientation, gender identity, genetic information, or any other characteristic protected by law.<br /><br /><i><b>USA Job Seekers:</b></i><br /> <br /> EEO Know Your Rights.<br /><br />",
  "sections": [
    {
      "title": "Key Responsibilities:",
      "items": [
        "Build prototypes and proofs of concept and ship agentic AI solutions to production standard within a defined technical approach.",
        "Implement and test tool use, retrieval pipelines, and agent workflows.",
        "Contribute to evaluation, observability and guardrails for agentic systems.",
        "Integrate AI capabilities into existing enterprise workflows and systems.",
        "Maintain high code quality and documentation so patterns can be reused.",
        "Flag technical risks and blockers early.",
        "Interface with technical peers to finalise requirements and complete moderately complex bug fixes.",
        "Build solutions for reuse, contributing to patterns, reference implementations, and starter kits so work done in one function can be picked up by another.",
        "Instrument solutions to capture outcome data against baselines.",
        "Work alongside host-function stakeholders to ensure the build fits real workflows, not assumed ones.",
        "Support handover and capability-building in the host function so the solution is owned and operable after the squad moves on.",
        "Keep abreast of new technology developments.",
        "Take on related responsibilities as the squad's needs evolve."
      ]
    },
    {
      "title": "Requirements:",
      "items": [
        "Engineering experience: 3+ years in software engineering, with hands-on experience building LLM-powered applications in production (RAG, tool-augmented agents or agentic workflows)."
      ]
    },
    {
      "title": "Engineering experience:",
      "items": [
        "Education: BS in Engineering, Computer Science, or equivalent."
      ]
    },
    {
      "title": "Education:",
      "items": [
        "Ways of working: Comfortable working autonomously within a defined problem and pushing back when something doesn't make sense, and delivering in short, time-boxed cycles where validated outcomes matter more than perfect solutions."
      ]
    },
    {
      "title": "Ways of working:",
      "items": [
        "Agentic AI / LLMs: Building RAG pipelines, tool-augmented agents and agentic workflows; familiar with prompt engineering, context management, evaluation and observability."
      ]
    },
    {
      "title": "Agentic AI / LLMs:",
      "items": [
        "Agent fundamentals: Understands how agents use memory, tools, and retrieval to complete multi-step tasks."
      ]
    },
    {
      "title": "Agent fundamentals:",
      "items": [
        "Enterprise integration: Integrating AI into existing systems via APIs and data pipelines."
      ]
    },
    {
      "title": "Enterprise integration:",
      "items": [
        "Cloud: AWS, Azure, or GCP."
      ]
    },
    {
      "title": "Cloud:",
      "items": [
        "Delivery: CI/CD, modern SDLC, TDD, and code review."
      ]
    },
    {
      "title": "Delivery:",
      "items": [
        "Data: Working with relational, columnar and vector stores, grounded in sound data-modelling principles."
      ]
    },
    {
      "title": "Data:",
      "items": [
        "Languages: Python, Java, TypeScript/JavaScript, SQL and relevant AI SDKs."
      ]
    },
    {
      "title": "Languages:",
      "items": [
        "Communication: Clear written and verbal communication with technical peers and stakeholders."
      ]
    },
    {
      "title": "Communication:",
      "items": [
        "Measurement: Instrumenting solutions to capture usage, productivity, and quality metrics against established baselines."
      ]
    },
    {
      "title": "Measurement:",
      "items": [
        "Working flexible hours - flexing the times when you work in the day to help you fit everything in and work when you are the most productive.",
        "Comprehensive Pension Plan",
        "Generous vacation entitlement and option for sabbatical leave",
        "Maternity, Paternity, Adoption, and Family Care leave",
        "Personal Choice budget",
        "Internal communities and networks",
        "Various employee discounts",
        "Recruitment introduction reward",
        "Employee Assistance Program (global)"
      ]
    }
  ],
  "responsibilities": [
    "Build prototypes and proofs of concept and ship agentic AI solutions to production standard within a defined technical approach.",
    "Implement and test tool use, retrieval pipelines, and agent workflows.",
    "Contribute to evaluation, observability and guardrails for agentic systems.",
    "Integrate AI capabilities into existing enterprise workflows and systems.",
    "Maintain high code quality and documentation so patterns can be reused.",
    "Flag technical risks and blockers early.",
    "Interface with technical peers to finalise requirements and complete moderately complex bug fixes.",
    "Build solutions for reuse, contributing to patterns, reference implementations, and starter kits so work done in one function can be picked up by another.",
    "Instrument solutions to capture outcome data against baselines.",
    "Work alongside host-function stakeholders to ensure the build fits real workflows, not assumed ones.",
    "Support handover and capability-building in the host function so the solution is owned and operable after the squad moves on.",
    "Keep abreast of new technology developments.",
    "Take on related responsibilities as the squad's needs evolve."
  ],
  "qualifications": [
    "Engineering experience: 3+ years in software engineering, with hands-on experience building LLM-powered applications in production (RAG, tool-augmented agents or agentic workflows).",
    "Education: BS in Engineering, Computer Science, or equivalent."
  ],
  "skills": [
    "AI",
    "AWS",
    "Azure",
    "Java",
    "JavaScript",
    "Python",
    "SQL",
    "TypeScript"
  ],
  "jobDetails": [
    {
      "label": "Employer",
      "value": "RELX"
    },
    {
      "label": "Location",
      "value": "London (West)"
    },
    {
      "label": "Salary",
      "value": "Competitive"
    },
    {
      "label": "Closing date",
      "value": "12 Aug 2026"
    },
    {
      "label": "Contract",
      "value": "Permanent"
    },
    {
      "label": "Hours",
      "value": "Full time"
    },
    {
      "label": "Sector",
      "value": "Technology & IT, AI"
    }
  ],
  "applicationLinks": [
    {
      "label": "Apply on website",
      "url": "https://jobs.theguardian.com/external-redirect-registration?JobId=10147599&LinkSource=JobDetails"
    },
    {
      "label": "No thanks, continue to apply (This will open in a new window from which you will be automatically redirected to an external site after 5 seconds)",
      "url": "https://jobs.theguardian.com/apply/10147599/software-engineer-ai-engineer?LinkSource=JobDetails"
    }
  ],
  "applicationUrl": "https://jobs.theguardian.com/external-redirect-registration?JobId=10147599&LinkSource=JobDetails",
  "url": "https://jobs.theguardian.com/job/10147599/software-engineer-ai-engineer/",
  "source": "Guardian Jobs",
  "searchQuery": "software engineer",
  "searchLocation": "London",
  "searchRadiusMiles": 30,
  "structuredData": {
    "@context": "https://schema.org/",
    "@type": "JobPosting",
    "title": "Software Engineer / AI Engineer",
    "description": "<b> Software Engineer /</b><b>AI Engineer </b><br /><br /><b>Are </b><b>you excited about building intelligent systems powered by innovative AI technologies?<br />Do you enjoy creating solutions that turn complex data into impactful outcomes?</b><br /><br /><b>About the team:</b><br /><br />Embedded Innovation Teams are cross-functional squads embedded within our segments to rapidly turn internal AI experimentation into validated, reusable solutions, building the capabilities we need to deliver customer value and growth. We work problem-first rather than tool-first, directly inside segment and function teams, improving the internal workflows that help our people deliver better outcomes for customers, faster.<br /><br /><b>About the role: </b><br /><br />As a Software Engineer / AI Engineer, you will build and ship AI-powered features as part of a cross-functional Innovation Squad, working inside a business function. You will deliver the set technical direction to production standard, working autonomously within a defined problem, building and testing tool use, retrieval pipelines and agent workflows, integrating AI capabilities into enterprise systems, and contributing to evaluation, observability and guardrails.<br /><br />You will hold a high bar on code quality, flag risks and blockers early, and work alongside host-function stakeholders to make sure what you build fits real workflows, not assumed ones. You'll also support handover and capability-building so the solution is owned and operable after the squad moves on.<br /><br /><b>Key Responsibilities:</b><br /><ul> <li>Build prototypes and proofs of concept and ship agentic AI solutions to production standard within a defined technical approach.<br /></li> <li>Implement and test tool use, retrieval pipelines, and agent workflows.<br /></li> <li>Contribute to evaluation, observability and guardrails for agentic systems.<br /></li> <li>Integrate AI capabilities into existing enterprise workflows and systems.<br /></li> <li>Maintain high code quality and documentation so patterns can be reused.<br /></li> <li>Flag technical risks and blockers early.<br /></li> <li>Interface with technical peers to finalise requirements and complete moderately complex bug fixes.<br /></li> <li>Build solutions for reuse, contributing to patterns, reference implementations, and starter kits so work done in one function can be picked up by another.<br /></li> <li>Instrument solutions to capture outcome data against baselines.<br /></li> <li>Work alongside host-function stakeholders to ensure the build fits real workflows, not assumed ones.<br /></li> <li>Support handover and capability-building in the host function so the solution is owned and operable after the squad moves on.<br /></li> <li>Keep abreast of new technology developments.<br /></li> <li>Take on related responsibilities as the squad's needs evolve.<br /></li> </ul><br /><b>Requirements: </b><br /><ul> <li><b>Engineering experience: </b>3+ years in software engineering, with hands-on experience building LLM-powered applications in production (RAG, tool-augmented agents or agentic workflows).<br /></li> <li><b>Education: </b>BS in Engineering, Computer Science, or equivalent.<br /></li> <li><b>Ways of working: </b>Comfortable working autonomously within a defined problem and pushing back when something doesn't make sense, and delivering in short, time-boxed cycles where validated outcomes matter more than perfect solutions.<br /></li> <li><b>Agentic AI / LLMs: </b>Building RAG pipelines, tool-augmented agents and agentic workflows; familiar with prompt engineering, context management, evaluation and observability.<br /></li> <li><b>Agent fundamentals: </b>Understands how agents use memory, tools, and retrieval to complete multi-step tasks.<br /></li> <li><b>Enterprise integration: </b>Integrating AI into existing systems via APIs and data pipelines.<br /></li> <li><b>Cloud: </b>AWS, Azure, or GCP.<br /></li> <li><b>Delivery: </b>CI/CD, modern SDLC, TDD, and code review.<br /></li> <li><b>Data: </b>Working with relational, columnar and vector stores, grounded in sound data-modelling principles.<br /></li> <li><b>Languages: </b>Python, Java, TypeScript/JavaScript, SQL and relevant AI SDKs.<br /></li> <li><b>Communication: </b>Clear written and verbal communication with technical peers and stakeholders.<br /></li> <li><b>Measurement: </b>Instrumenting solutions to capture usage, productivity, and quality metrics against established baselines.<br /></li> </ul><br /><b>Why Join Us?</b><br /><br />Join our team and contribute to a culture of innovation, collaboration, and excellence. If you are ready to advance your career and make a significant impact, we encourage you to apply.<br /><br /><b>Work in a way that works for you</b><br /><br />We promote a healthy work/life balance across the organization. We offer an appealing working prospect for our people. With numerous wellbeing initiatives, shared parental leave, study assistance, and sabbaticals, we will help you meet your immediate responsibilities and your long-term goals.<br /><ul> <li>Working flexible hours - flexing the times when you work in the day to help you fit everything in and work when you are the most productive.<br /></li> </ul><br /><b>Working for you</b><br /><br />We know that your well-being and happiness are key to a long and successful career. These are some of the benefits we are delighted to offer:<br /><ul> <li>Comprehensive Pension Plan<br /></li> <li>Generous vacation entitlement and option for sabbatical leave<br /></li> <li>Maternity, Paternity, Adoption, and Family Care leave<br /></li> <li>Personal Choice budget<br /></li> <li>Internal communities and networks<br /></li> <li>Various employee discounts<br /></li> <li>Recruitment introduction reward<br /></li> <li>Employee Assistance Program (global)<br /></li> </ul><br /><b>About the business- </b><br /><br />A global leader in information and analytics, we help researchers and healthcare professionals advance science and improve health outcomes for the benefit of society. Building on our publishing heritage, we combine quality information and vast data sets with analytics to support visionary science and research, health education, and interactive learning, as well as exceptional healthcare and clinical practice. At Elsevier, your work contributes to the world’s grand challenges and a more sustainable future. We harness innovative technologies to support science and healthcare to partner for a better world.<br /><br /><b>We know your well-being and happiness are key to a long and successful career. We are delighted to offer country specific benefits. Click </b> <b>here</b><b> to access benefits specific to your location.</b><br /><br />We are committed to providing a fair and accessible hiring process. If you have a disability or other need that requires accommodation or adjustment, please let us know by completing our Applicant Request Support Form or please contact 1-855-833-5120.<br /><br /><b>Criminals may pose as recruiters asking for money or personal information. We never request money or banking details from job applicants. Learn more about spotting and avoiding scams </b> <b>here</b><b>.</b><br /><br />Please read our Candidate Privacy Policy.<br /><br />We are an equal opportunity employer: qualified applicants are considered for and treated during employment without regard to race, color, creed, religion, sex, national origin, citizenship status, disability status, protected veteran status, age, marital status, sexual orientation, gender identity, genetic information, or any other characteristic protected by law.<br /><br /><i><b>USA Job Seekers:</b></i><br /> <br /> EEO Know Your Rights.<br /><br />",
    "datePosted": "2026-07-12T23:00:00.000Z",
    "validThrough": "2026-08-12T22:59:59.000Z",
    "hiringOrganization": {
      "name": "RELX",
      "@type": "Organization"
    },
    "jobLocation": [
      {
        "@type": "Place",
        "address": {
          "@type": "PostalAddress",
          "addressRegion": "London (Greater)",
          "addressCountry": "GB"
        }
      }
    ],
    "directApply": false,
    "identifier": {
      "@type": "PropertyValue",
      "name": "RELX"
    },
    "employmentType": "[\"FULL_TIME\"]"
  },
  "scrapedAt": "2026-07-21T20:29:01.706Z",
  "position": 1
}
```

### Responsible use

Only collect publicly available job information. Respect Guardian's applicable terms of service, robots directives, and data-protection requirements, and follow the usage policy of any proxy infrastructure you route through. Do not use this Actor to scrape authenticated pages, to bypass paywalls, or to harvest personal data of candidates or recruiters.

### Related jobs scrapers

This Actor is part of the **[jobsapi](https://apify.com/jobsapi)** organisation on Apify — a curated set of job-board scrapers that all share the same conventions (input schema, output schema, validation, and runtime). Each scraper lives under [`apify.com/jobsapi/<actor-name>`](https://apify.com/jobsapi) and is published from a sibling folder in this workspace.

The full catalogue of jobs scrapers in this workspace:

#### Global / multi-country

- [indeed-jobs-search-scraper](https://apify.com/jobsapi/indeed-jobs-search-scraper) — [Indeed](https://www.indeed.com)
- [linkedin-jobs-search-scraper](https://apify.com/jobsapi/linkedin-jobs-search-scraper) — [LinkedIn](https://www.linkedin.com/jobs)
- [google-jobs-search-scraper](https://apify.com/jobsapi/google-jobs-search-scraper) — [Google Jobs](https://www.google.com/search_jobs)
- [glassdoor-jobs-search-scraper](https://apify.com/jobsapi/glassdoor-jobs-search-scraper) — [Glassdoor](https://www.glassdoor.com)
- [monster-jobs-search-scraper](https://apify.com/jobsapi/monster-jobs-search-scraper) — [Monster](https://www.monster.com)
- [ziprecruiter-jobs-search-scraper](https://apify.com/jobsapi/ziprecruiter-jobs-search-scraper) — [ZipRecruiter](https://www.ziprecruiter.com)
- [simplyhired-jobs-search-scraper](https://apify.com/jobsapi/simplyhired-jobs-search-scraper) — [SimplyHired](https://www.simplyhired.com)
- [adzuna-jobs-search-scraper](https://apify.com/jobsapi/adzuna-jobs-search-scraper) — [Adzuna](https://www.adzuna.com)
- [jooble-jobs-search-scraper](https://apify.com/jobsapi/jooble-jobs-search-scraper) — [Jooble](https://jooble.org)
- [jora-jobs-search-scraper](https://apify.com/jobsapi/jora-jobs-search-scraper) — [Jora](https://www.jora.com)
- [careerjet-jobs-search-scraper](https://apify.com/jobsapi/careerjet-jobs-search-scraper) — [Careerjet](https://www.careerjet.com)
- [multi-ats-jobs-search-scraper](https://apify.com/jobsapi/multi-ats-jobs-search-scraper) — multi-ATS aggregator
- [workable-jobs-search-scraper](https://apify.com/jobsapi/workable-jobs-search-scraper) — [Workable](https://www.workable.com)
- [workday-jobs-search-scraper](https://apify.com/jobsapi/workday-jobs-search-scraper) — Workday-powered career sites

#### Remote / flexible

- [remoteok-jobs-search-scraper](https://apify.com/jobsapi/remoteok-jobs-search-scraper) — [RemoteOK](https://remoteok.com)
- [we-work-remotely-jobs-search-scraper](https://apify.com/jobsapi/we-work-remotely-jobs-search-scraper) — [We Work Remotely](https://weworkremotely.com)
- [remotive-jobs-search-scraper](https://apify.com/jobsapi/remotive-jobs-search-scraper) — [Remotive](https://remotive.com)
- [remote-co-jobs-search-scraper](https://apify.com/jobsapi/remote-co-jobs-search-scraper) — [Remote.co](https://remote.co)
- [flexjobs-jobs-search-scraper](https://apify.com/jobsapi/flexjobs-jobs-search-scraper) — [FlexJobs](https://www.flexjobs.com)
- [upwork-jobs-search-scraper](https://apify.com/jobsapi/upwork-jobs-search-scraper) — [Upwork](https://www.upwork.com)

#### United States

- [usajobs-jobs-search-scraper](https://apify.com/jobsapi/usajobs-jobs-search-scraper) — [USAJobs](https://www.usajobs.gov)
- [dice-com-jobs-search-scraper](https://apify.com/jobsapi/dice-com-jobs-search-scraper) — [Dice](https://www.dice.com)
- [builtin-jobs-search-scraper](https://apify.com/jobsapi/builtin-jobs-search-scraper) — [Built In](https://www.builtin.com)
- [governmentjobs-jobs-search-scraper](https://apify.com/jobsapi/governmentjobs-jobs-search-scraper) — [GovernmentJobs](https://www.governmentjobs.com)
- [handshake-jobs-search-scraper](https://apify.com/jobsapi/handshake-jobs-search-scraper) — [Handshake](https://joinhandshake.com)
- [higheredjobs-jobs-search-scraper](https://apify.com/jobsapi/higheredjobs-jobs-search-scraper) — [HigherEdJobs](https://www.higheredjobs.com)
- [hcareers-jobs-search-scraper](https://apify.com/jobsapi/hcareers-jobs-search-scraper) — [HCareers](https://www.hcareers.com)
- [idealist-jobs-search-scraper](https://apify.com/jobsapi/idealist-jobs-search-scraper) — [Idealist](https://www.idealist.org)
- [jobcase-jobs-search-scraper](https://apify.com/jobsapi/jobcase-jobs-search-scraper) — [Jobcase](https://www.jobcase.com)
- [snagajob-jobs-search-scraper](https://apify.com/jobsapi/snagajob-jobs-search-scraper) — [Snagajob](https://www.snagajob.com)
- [themuse-jobs-search-scraper](https://apify.com/jobsapi/themuse-jobs-search-scraper) — [The Muse](https://www.themuse.com)
- [wellfound-jobs-search-scraper](https://apify.com/jobsapi/wellfound-jobs-search-scraper) — [Wellfound (AngelList Talent)](https://wellfound.com)
- [tes-jobs-search-scraper](https://apify.com/jobsapi/tes-jobs-search-scraper) — [TES](https://www.tes.com)
- [practicelink-jobs-search-scraper](https://apify.com/jobsapi/practicelink-jobs-search-scraper) — [PracticeLink](https://www.practicelink.com)
- [civilservice-jobs-search-scraper](https://apify.com/jobsapi/civilservice-jobs-search-scraper) — Civil Service

#### United Kingdom & Ireland

- [reed-jobs-search-scraper](https://apify.com/jobsapi/reed-jobs-search-scraper) — [Reed](https://www.reed.co.uk)
- [totaljobs-jobs-search-scraper](https://apify.com/jobsapi/totaljobs-jobs-search-scraper) — [Totaljobs](https://www.totaljobs.com)
- [cv-library-jobs-search-scraper](https://apify.com/jobsapi/cv-library-jobs-search-scraper) — [CV-Library](https://www.cv-library.co.uk)
- [jobsite-jobs-search-scraper](https://apify.com/jobsapi/jobsite-jobs-search-scraper) — [Jobsite](https://www.jobsite.co.uk)
- [jobs-ac-uk-jobs-search-scraper](https://apify.com/jobsapi/jobs-ac-uk-jobs-search-scraper) — [Jobs.ac.uk](https://www.jobs.ac.uk)
- [guardian-jobs-search-scraper](https://apify.com/jobsapi/guardian-jobs-search-scraper) — [Guardian Jobs](https://jobs.theguardian.com)
- [irishjobs-jobs-search-scraper](https://apify.com/jobsapi/irishjobs-jobs-search-scraper) — [IrishJobs](https://www.irishjobs.ie)
- [nhs-jobs-search-scraper](https://apify.com/jobsapi/nhs-jobs-search-scraper) — [NHS Jobs](https://www.jobs.nhs.uk)
- [tes-jobs-search-scraper](https://apify.com/jobsapi/tes-jobs-search-scraper) — [TES](https://www.tes.com)

#### Europe

- [apec-jobs-search-scraper](https://apify.com/jobsapi/apec-jobs-search-scraper) — [APEC](https://www.apec.fr) (France, executive roles)
- [cadremploi-jobs-search-scraper](https://apify.com/jobsapi/cadremploi-jobs-search-scraper) — [Cadremploi](https://www.cadremploi.fr) (France)
- [meteojob-jobs-search-scraper](https://apify.com/jobsapi/meteojob-jobs-search-scraper) — [Meteojob](https://www.meteojob.com) (France)
- [hellowork-jobs-search-scraper](https://apify.com/jobsapi/hellowork-jobs-search-scraper) — [Hellowork](https://www.hellowork.com) (France)
- [francetravail-jobs-search-scraper](https://apify.com/jobsapi/francetravail-jobs-search-scraper) — [France Travail](https://www.francetravail.fr) (France)
- [michaelpage-jobs-search-scraper](https://apify.com/jobsapi/michaelpage-jobs-search-scraper) — [Michael Page](https://www.michaelpage.com)
- [manpower-jobs-search-scraper](https://apify.com/jobsapi/manpower-jobs-search-scraper) — [Manpower](https://www.manpower.com)
- [randstad-jobs-search-scraper](https://apify.com/jobsapi/randstad-jobs-search-scraper) — [Randstad](https://www.randstad.com)
- [roberthalf-jobs-search-scraper](https://apify.com/jobsapi/roberthalf-jobs-search-scraper) — [Robert Half](https://www.roberthalf.com)
- [akkodis-jobs-search-scraper](https://apify.com/jobsapi/akkodis-jobs-search-scraper) — [Akkodis](https://www.akkodis.com)
- [stepstone-jobs-search-scraper](https://apify.com/jobsapi/stepstone-jobs-search-scraper) — [Stepstone](https://www.stepstone.com) (DE/EU)
- [arbeitsagentur-jobs-search-scraper](https://apify.com/jobsapi/arbeitsagentur-jobs-search-scraper) — [Arbeitsagentur](https://www.arbeitsagentur.de) (Germany)
- [xing-jobs-search-scraper](https://apify.com/jobsapi/xing-jobs-search-scraper) — [Xing](https://www.xing.com)
- [karriere-at-jobs-search-scraper](https://apify.com/jobsapi/karriere-at-jobs-search-scraper) — [Karriere.at](https://www.karriere.at) (Austria)
- [jobs-ch-jobs-search-scraper](https://apify.com/jobsapi/jobs-ch-jobs-search-scraper) — [Jobs.ch](https://www.jobs.ch) (Switzerland)
- [pracuj-pl-jobs-search-scraper](https://apify.com/jobsapi/pracuj-pl-jobs-search-scraper) — [Pracuj.pl](https://www.pracuj.pl) (Poland)
- [nofluffjobs-jobs-search-scraper](https://apify.com/jobsapi/nofluffjobs-jobs-search-scraper) — [No Fluff Jobs](https://nofluffjobs.com)
- [jobindex-jobs-search-scraper](https://apify.com/jobsapi/jobindex-jobs-search-scraper) — [Jobindex](https://www.jobindex.dk) (Denmark)
- [finn-no-jobs-search-scraper](https://apify.com/jobsapi/finn-no-jobs-search-scraper) — [FINN.no](https://www.finn.no) (Norway)
- [infojobs-jobs-search-scraper](https://apify.com/jobsapi/infojobs-jobs-search-scraper) — [InfoJobs](https://www.infojobs.net) (Spain/Italy/Portugal)
- [eluta-jobs-search-scraper](https://apify.com/jobsapi/eluta-jobs-search-scraper) — [Eluta.ca](https://www.eluta.ca) (Canada)
- [jobbank-jobs-search-scraper](https://apify.com/jobsapi/jobbank-jobs-search-scraper) — [Job Bank](https://www.jobbank.gc.ca) (Canada)
- [jobillico-jobs-search-scraper](https://apify.com/jobsapi/jobillico-jobs-search-scraper) — [Jobillico](https://www.jobillico.com) (Canada)
- [eures-jobs-search-scraper](https://apify.com/jobsapi/eures-jobs-search-scraper) — [EURES](https://ec.europa.eu/eures) (EU)
- [vdab-jobs-search-scraper](https://apify.com/jobsapi/vdab-jobs-search-scraper) — [VDAB](https://www.vdab.be) (Belgium)
- [kariyer-net-jobs-search-scraper](https://apify.com/jobsapi/kariyer-net-jobs-search-scraper) — [Kariyer.net](https://www.kariyer.net) (Türkiye)
- [jobberman-jobs-search-scraper](https://apify.com/jobsapi/jobberman-jobs-search-scraper) — [Jobberman](https://www.jobberman.com) (Nigeria)
- [pnet-jobs-search-scraper](https://apify.com/jobsapi/pnet-jobs-search-scraper) — [PNet](https://www.pnet.co.za) (South Africa)
- [brightmonday-jobs-search-scraper](https://apify.com/jobsapi/brightmonday-jobs-search-scraper) — [BrighterMonday](https://www.brightermonday.co.ke) (East Africa)
- [caterer-jobs-search-scraper](https://apify.com/jobsapi/caterer-jobs-search-scraper) — [Caterer.com](https://www.caterer.com) (hospitality, UK/EU)

#### India

- [naukri-jobs-search-scraper](https://apify.com/jobsapi/naukri-jobs-search-scraper) — [Naukri](https://www.naukri.com)
- [foundit-jobs-search-scraper](https://apify.com/jobsapi/foundit-jobs-search-scraper) — [Foundit (Monster India)](https://www.foundit.in)
- [timesjobs-jobs-search-scraper](https://apify.com/jobsapi/timesjobs-jobs-search-scraper) — [TimesJobs](https://www.timesjobs.com)
- [shine-com-jobs-search-scraper](https://apify.com/jobsapi/shine-com-jobs-search-scraper) — [Shine](https://www.shine.com)
- [internshala-jobs-search-scraper](https://apify.com/jobsapi/internshala-jobs-search-scraper) — [Internshala](https://internshala.com)
- [freshersworld-jobs-search-scraper](https://apify.com/jobsapi/freshersworld-jobs-search-scraper) — [Freshersworld](https://www.freshersworld.com)
- [hirist-jobs-search-scraper](https://apify.com/jobsapi/hirist-jobs-search-scraper) — [Hirist](https://www.hirist.com)
- [instahyre-jobs-search-scraper](https://apify.com/jobsapi/instahyre-jobs-search-scraper) — [Instahyre](https://www.instahyre.com)
- [iimjobs-jobs-search-scraper](https://apify.com/jobsapi/iimjobs-jobs-search-scraper) — [IIMJobs](https://www.iimjobs.com)
- [cutshort-jobs-search-scraper](https://apify.com/jobsapi/cutshort-jobs-search-scraper) — [Cutshort](https://cutshort.io)
- [workindia-jobs-search-scraper](https://apify.com/jobsapi/workindia-jobs-search-scraper) — [WorkIndia](https://www.workindia.in)
- [quikr-jobs-search-scraper](https://apify.com/jobsapi/quikr-jobs-search-scraper) — [Quikr Jobs](https://www.quikr.com/jobs)
- [unstop-jobs-search-scraper](https://apify.com/jobsapi/unstop-jobs-search-scraper) — [Unstop (Dare2Compete)](https://unstop.com)
- [apna-jobs-search-scraper](https://apify.com/jobsapi/apna-jobs-search-scraper) — [Apna](https://apna.co)
- [employmentnews-jobs-search-scraper](https://apify.com/jobsapi/employmentnews-jobs-search-scraper) — [Employment News](https://employmentnews.gov.in)
- [ibps-recruitment-jobs-search-scraper](https://apify.com/jobsapi/ibps-recruitment-jobs-search-scraper) — IBPS recruitment
- [ssc-recruitment-jobs-search-scraper](https://apify.com/jobsapi/ssc-recruitment-jobs-search-scraper) — SSC recruitment
- [rrb-recruitment-jobs-search-scraper](https://apify.com/jobsapi/rrb-recruitment-jobs-search-scraper) — RRB recruitment
- [upsc-recruitment-jobs-search-scraper](https://apify.com/jobsapi/upsc-recruitment-jobs-search-scraper) — UPSC recruitment
- [freejobalert-jobs-search-scraper](https://apify.com/jobsapi/freejobalert-jobs-search-scraper) — [FreeJobAlert](https://www.freejobalert.com)
- [tnprivatejobs-jobs-search-scraper](https://apify.com/jobsapi/tnprivatejobs-jobs-search-scraper) — TN Private Jobs

#### Asia-Pacific

- [jobkorea-jobs-search-scraper](https://apify.com/jobsapi/jobkorea-jobs-search-scraper) — [JobKorea](https://www.jobkorea.co.kr) (Korea)
- [saramin-jobs-search-scraper](https://apify.com/jobsapi/saramin-jobs-search-scraper) — [Saramin](https://www.saramin.co.kr) (Korea)
- [daijob-jobs-search-scraper](https://apify.com/jobsapi/daijob-jobs-search-scraper) — [Daijob](https://www.daijob.com) (Japan)
- [gaijinpot-jobs-search-scraper](https://apify.com/jobsapi/gaijinpot-jobs-search-scraper) — [GaijinPot](https://jobs.gaijinpot.com) (Japan)
- [jobsdb-sg-jobs-search-scraper](https://apify.com/jobsapi/jobsdb-sg-jobs-search-scraper) — [JobsDB](https://www.jobsdb.com) (Hong Kong / SEA)
- [jobstreet-jobs-search-scraper](https://apify.com/jobsapi/jobstreet-jobs-search-scraper) — [JobStreet](https://www.jobstreet.com) (SEA)
- [mycareersfuture-jobs-search-scraper](https://apify.com/jobsapi/mycareersfuture-jobs-search-scraper) — [MyCareersFuture](https://www.mycareersfuture.gov.sg) (Singapore)
- [glints-jobs-search-scraper](https://apify.com/jobsapi/glints-jobs-search-scraper) — [Glints](https://glints.com) (SEA)
- [himalayas-jobs-search-scraper](https://apify.com/jobsapi/himalayas-jobs-search-scraper) — [Himalayas](https://himalayas.app)
- [vietnamworks-jobs-search-scraper](https://apify.com/jobsapi/vietnamworks-jobs-search-scraper) — [VietnamWorks](https://www.vietnamworks.com)
- [conzultalent-jobs-search-scraper](https://apify.com/jobsapi/conzultalent-jobs-search-scraper) — Conzultalent

#### MENA

- [bayt-jobs-search-scraper](https://apify.com/jobsapi/bayt-jobs-search-scraper) — [Bayt.com](https://www.bayt.com)
- [gulftalent-jobs-search-scraper](https://apify.com/jobsapi/gulftalent-jobs-search-scraper) — [GulfTalent](https://www.gulftalent.com)
- [wuzzuf-jobs-search-scraper](https://apify.com/jobsapi/wuzzuf-jobs-search-scraper) — [Wuzzuf](https://wuzzuf.net) (Egypt)
- [naukrigulf-jobs-search-scraper](https://apify.com/jobsapi/naukrigulf-jobs-search-scraper) — [NaukriGulf](https://www.naukrigulf.com)
- [hh-ru-jobs-search-scraper](https://apify.com/jobsapi/hh-ru-jobs-search-scraper) — [hh.ru](https://hh.ru) (Russia)

#### Latin America

- [computrabajo-jobs-search-scraper](https://apify.com/jobsapi/computrabajo-jobs-search-scraper) — [Computrabajo](https://www.computrabajo.com)
- [bumeran-jobs-search-scraper](https://apify.com/jobsapi/bumeran-jobs-search-scraper) — [Bumeran](https://www.bumeran.com)
- [occ-mundial-jobs-search-scraper](https://apify.com/jobsapi/occ-mundial-jobs-search-scraper) — [OCC Mundial](https://www.occ.com.mx)
- [zonajobs-jobs-search-scraper](https://apify.com/jobsapi/zonajobs-jobs-search-scraper) — [ZonaJobs](https://www.zonajobs.com.ar)
- [laborum-jobs-search-scraper](https://apify.com/jobsapi/laborum-jobs-search-scraper) — [Laborum](https://www.laborum.com)
- [catho-jobs-search-scraper](https://apify.com/jobsapi/catho-jobs-search-scraper) — [Catho](https://www.catho.com.br) (Brazil)
- [gupy-jobs-search-scraper](https://apify.com/jobsapi/gupy-jobs-search-scraper) — [Gupy](https://gupy.com.br) (Brazil)
- [infojobs-jobs-search-scraper](https://apify.com/jobsapi/infojobs-jobs-search-scraper) — [InfoJobs](https://www.infojobs.com.br) (Brazil)
- [olx-jobs-search-scraper](https://apify.com/jobsapi/olx-jobs-search-scraper) — [OLX](https://www.olx.com) Jobs

#### Africa

- [jobberman-jobs-search-scraper](https://apify.com/jobsapi/jobberman-jobs-search-scraper) — [Jobberman](https://www.jobberman.com) (Nigeria)
- [pnet-jobs-search-scraper](https://apify.com/jobsapi/pnet-jobs-search-scraper) — [PNet](https://www.pnet.co.za) (South Africa)
- [brightmonday-jobs-search-scraper](https://apify.com/jobsapi/brightmonday-jobs-search-scraper) — [BrighterMonday](https://www.brightermonday.co.ke) (East Africa)
- [career-jobs-search-scraper](https://apify.com/jobsapi/career-jobs-search-scraper) — [Career](https://www.career.co.za) (South Africa)
- [ejobs-ro-jobs-search-scraper](https://apify.com/jobsapi/ejobs-ro-jobs-search-scraper) — [eJobs.ro](https://www.ejobs.ro) (Romania)
- [ncs-jobs-search-scraper](https://apify.com/jobsapi/ncs-jobs-search-scraper) — NCS
- [trademe-jobs-search-scraper](https://apify.com/jobsapi/trademe-jobs-search-scraper) — [Trade Me Jobs](https://www.trademe.co.nz) (New Zealand)
- [seek-jobs-search-scraper](https://apify.com/jobsapi/seek-jobs-search-scraper) — [SEEK](https://www.seek.com.au) (AU/NZ)
- [workforce-australia-jobs-search-scraper](https://apify.com/jobsapi/workforce-australia-jobs-search-scraper) — Workforce Australia

#### Other / specialised

- [dice-com-jobs-search-scraper](https://apify.com/jobsapi/dice-com-jobs-search-scraper) — [Dice](https://www.dice.com) (tech, US)
- [efinancialcareers-jobs-search-scraper](https://apify.com/jobsapi/efinancialcareers-jobs-search-scraper) — [eFinancialCareers](https://www.efinancialcareers.com)
- [apsjobs-jobs-search-scraper](https://apify.com/jobsapi/apsjobs-jobs-search-scraper) — APS Jobs
- [talent-jobs-search-scraper](https://apify.com/jobsapi/talent-jobs-search-scraper) — Talent
- [jungle-jobs-search-scraper](https://apify.com/jobsapi/jungle-jobs-search-scraper) — [Jungle.co](https://jungle.co) (creative / tech)
- [wuzzuf-jobs-search-scraper](https://apify.com/jobsapi/wuzzuf-jobs-search-scraper) — [Wuzzuf](https://wuzzuf.net)

Browse the full catalogue at **[apify.com/jobsapi](https://apify.com/jobsapi)**.

# Actor input Schema

## `query` (type: `string`):

Job search query (e.g. software engineer, marketing, nurse)

## `location` (type: `string`):

Location to search in (e.g. London, Manchester, remote)

## `radiusMiles` (type: `integer`):

Radius around the resolved Guardian Jobs location.

## `maxItems` (type: `integer`):

Maximum number of job listings to scrape

## `maxPages` (type: `integer`):

Maximum pages to inspect while collecting relevant jobs.

## `proxyConfiguration` (type: `object`):

Proxy configuration for scraping

## Actor input object example

```json
{
  "query": "software engineer",
  "location": "London",
  "radiusMiles": 30,
  "maxItems": 3,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "software engineer",
    "location": "London",
    "maxItems": 3,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobsapi/guardian-jobs-search-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "software engineer",
    "location": "London",
    "maxItems": 3,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("jobsapi/guardian-jobs-search-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "software engineer",
  "location": "London",
  "maxItems": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call jobsapi/guardian-jobs-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jobsapi/guardian-jobs-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/aVXMkhd9vyg8rBAWH/builds/8qfhFbGyd2UHzqd2H/openapi.json
