Totaljobs Jobs Scraper
Pricing
from $0.60 / 1,000 jobs
Totaljobs Jobs Scraper
🏷️ From $0.60 / 1K | Search and export UK job vacancies from Totaljobs with salary, employer and location. Duplicate agency repostings are removed and pay is annualised for comparison.
Pricing
from $0.60 / 1,000 jobs
Rating
0.0
(0)
Developer
丂卩ㄖㄖҜㄚ
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
2
Monthly active users
7 days ago
Last modified
Categories
Share
Export UK job vacancies from Totaljobs, with salary, employer, location and an annualised pay figure on every result.
🔍 What does Totaljobs Jobs Scraper do?
It runs a job search on Totaljobs and returns every vacancy it finds as a clean row of data, ready for a spreadsheet, a database or your own product.
Totaljobs serves four pages to a signed out visitor and then stops, so one search returns about 100 jobs however high you set maxResults. See how many jobs one search returns below for how to cover a market properly.
🧭 Is there an official Totaljobs API?
No. Totaljobs publishes no public developer API for reading its listings. Its integrations are employer-side arrangements for posting jobs, not a route for getting search results out as data. The only official way to read Totaljobs vacancies is the website itself, one page at a time.
This Actor turns that manual reading into structured rows: one search in, deduplicated listings out as JSON, CSV or Excel, with the published salary parsed into a period and an annualised figure so results actually compare. Proxy handling is built in, so there is nothing to configure before the first run.
📊 What data can I extract from Totaljobs?
One item per job:
| Field | What it holds | |
|---|---|---|
| 🆔 | jobId | Totaljobs' stable id for the listing |
| 🏷️ | title | The job title as advertised |
| 🏢 | employer | The hiring organisation or agency shown on the listing |
| 📍 | location | Town, area and postcode district where given |
| 💰 | salaryFrom | Lower bound of the advertised salary |
| 💰 | salaryTo | Upper bound of the advertised salary |
| 💰 | salaryPeriod | Hourly, Daily, Weekly, Monthly or Annual |
| 💰 | salaryAnnualisedFrom | Estimated annual equivalent of the lower bound |
| 💰 | salaryAnnualisedTo | Estimated annual equivalent of the upper bound |
| 💰 | salaryRaw | The salary text exactly as published |
| ✅ | hasSalary | False when pay is hidden or stated as competitive |
| 📌 | label | Any badge Totaljobs shows on the card, such as Featured |
| 📅 | postedText | Posting age as Totaljobs displays it, such as "4 days ago" |
| 📅 | postedApprox | The posting date resolved from that text, UTC |
| 🔗 | url | Direct link to the listing |
| 📥 | searchKeywords | The keywords this search ran with |
| 📥 | searchLocation | The location this search ran with |
| 📅 | retrievedAt | When the row was collected |
Annualised figures assume a 37.5 hour week and 52 weeks. They are for comparison, not contractual accuracy. postedApprox is derived from relative text like "3 days ago", so it is accurate to the day, not the minute.
💡 Why scrape Totaljobs?
Salary benchmarking. An HR manager pricing a warehouse operative opening in Greater Manchester pulls every advertised rate in the area, annualised so hourly and salaried roles sit in one sortable column.
Hiring signals. A recruiter watching which agencies and employers are hiring for the same role in the same town runs the search weekly and diffs the employer column.
Job aggregation. A niche job board for care work feeds deduplicated Totaljobs listings into its own search on a morning schedule.
Pay movement over time. An analyst tracking whether driver pay in the West Midlands is still climbing runs the same query monthly and charts the annualised column.
Fresh listings only. A job seeker who only wants this week's postings sets postedWithinDays to 7 and works through the export before the roles fill.
One vacancy, one row. Someone tired of the same agency role appearing under three job ids leaves dedupeSimilar on and sees each vacancy once.
🚀 How do I use Totaljobs Jobs Scraper?
- Click Try for free.
- Enter what you are searching for and where, for example
warehouse operativeinManchester. - Narrow it with
radiusMiles,salaryFromorpostedWithinDays. - Cap the run with
maxResults, then click Start. - Download the results as JSON, CSV or Excel, or pull them from the API.
⬇️ Input
{"keywords": "warehouse operative","location": "Manchester","radiusMiles": 10,"postedWithinDays": 7,"maxResults": 100}
Set at least one of keywords or location.
| Field | Type | Default | What it does |
|---|---|---|---|
keywords | string | nurse | Job title or keywords |
location | string | manchester | Town, city or county |
radiusMiles | integer | 10 | How far from that location to search |
salaryFrom | integer | Annual salary floor in GBP | |
postedWithinDays | integer | Only jobs posted in the last N days | |
dedupeSimilar | boolean | true | Collapse duplicate repostings of the same role |
maxResults | integer | 100 | Hard cap on billable results |
proxyConfiguration | object | Residential GB | Residential UK proxy, required in practice |
⬆️ Output
Table view
Results arrive as a table you can sort and filter in the Console. There is a second view, Salary detail, that lines up the period and the annualised figures for comparing listings against each other.
JSON
A typical row:
{"title": "Registered Nurse","employer": "Example Care Ltd","location": "Manchester","salaryRaw": "£30,000 to £35,000 per annum","postedText": "3 days ago","url": "https://www.totaljobs.com/job/123456","salaryAnnualisedFrom": 30000,"salaryAnnualisedTo": 35000}
Download it from the run as JSON, CSV or Excel, or read it straight from the API.
What is different about this one
Salaries you can actually compare. Job boards mix hourly, daily and annual pay in the same list. In a typical nursing search on Totaljobs, almost every result is quoted hourly. Put those next to a salaried role and any analysis is nonsense. This Actor returns the published figure, the period it refers to, and an annualised equivalent, so one column sorts correctly across the whole result set.
It survives their deploys. Totaljobs styles with emotion, so every CSS class is a build hash like res-mnyp7m that changes when they ship. Anything selecting on those breaks without warning. This anchors on their stable data-at automation attributes instead.
You are not billed for the same job twice. Agencies repost identical roles under several job ids. Rows with the same title, employer, location and salary are collapsed by default.
How many jobs one search returns
Totaljobs serves four pages to a signed out visitor and then stops, so a single
search returns at most about 100 jobs no matter how high maxResults goes. The
pagination on the site still advertises the full count, which is why a search
that claims 18 pages will hand over four.
To cover a market properly, run several narrower searches rather than one broad one. Splitting by location is usually the cleanest, for example Manchester, Salford and Stockport separately instead of Manchester at a 20 mile radius. Splitting by keyword works too where the roles are distinct.
Proxy is required
Totaljobs blocks datacentre traffic. A residential UK proxy is set by default and is strongly recommended. Without one the run finishes with an empty dataset and a status message saying the site refused the connection, rather than quietly returning nothing.
⏱️ How long does a run take?
Measured on real runs, so you know what normal looks like and can tell it apart from a run that has stalled.
| Vacancies returned | Typical run time |
|---|---|
| 10 | about 8 seconds |
| 95 to 100 | 26 to 74 seconds |
Totaljobs is read through a UK residential address, which is why a run is measured in tens of seconds rather than single figures: every search page is a full HTML fetch over a residential hop rather than an API call. The spread inside that second row is the exit address rather than the search. The same hundred vacancy pull has come back in 26 seconds on a good exit and 74 seconds on a slow one, and a blocked exit is replaced and retried rather than pushed through.
A run returning fewer vacancies than maxResults is normal here. One Totaljobs search holds around a hundred distinct vacancies before it starts repeating, so a request for 300 returns roughly 95 and says so, and dedupeSimilar removes the near duplicate reposts that would otherwise pad that figure. Run several narrower searches rather than one wide one if you want more. The first few seconds of any run are the container starting rather than the work.
A run is never silently stuck. Each search page is logged as it is read, and vacancies are written to the dataset as they are parsed rather than held back to the end, so a run that hits its time limit still leaves everything it had already collected. A search that matches nothing ends successfully with an empty dataset and the reason in its status message.
Set the run timeout to suit the size of the ask. This Actor's default is 3600 seconds, which is comfortably more than the largest run in the table above (100 vacancies takes about 75 seconds). You are charged per delivered result rather than per minute, so a generous timeout costs you nothing and a tight one risks losing the run's work. Lower it only if you want a hard ceiling on how long a scheduled run may sit.
💰 How much does it cost?
You pay per job returned. Duplicate repostings are collapsed before charging, so an agency role listed under three job ids is charged once. Set maxResults to cap what a run can cost.
Runs that return nothing cost nothing. Paid Apify plans get a lower rate per job.
🔌 Integrations
Send results straight to Google Sheets, Slack, Airtable, Zapier, Make or your own webhook using Apify integrations. You can also trigger a run whenever something happens in another tool.
AI agents can run this Actor too, through the Apify MCP server. An agent connected to mcp.apify.com can discover it, read its input schema and start a run under the identifier spookyweb/uk-jobs-totaljobs, then read the finished dataset. That means an assistant asked "what are care assistant roles in Leeds paying" can call this Actor and answer from live listings.
🔗 Using Totaljobs Jobs Scraper with the Apify API
curl -X POST "https://api.apify.com/v2/acts/spookyweb~uk-jobs-totaljobs/run-sync-get-dataset-items?token=YOUR_TOKEN" \-H "Content-Type: application/json" \-d '{"keywords": "warehouse operative", "location": "Manchester", "radiusMiles": 10, "postedWithinDays": 7, "maxResults": 100}'
Or with the Apify client:
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('spookyweb/uk-jobs-totaljobs').call({keywords: 'warehouse operative',location: 'Manchester',radiusMiles: 10,postedWithinDays: 7,maxResults: 100,});const { items } = await client.dataset(run.defaultDatasetId).listItems();
Full detail is in the Apify API reference, and every run is also callable from the Python and JavaScript clients.
❓ FAQ
How many jobs can I get from one search?
About 100. Totaljobs serves four pages to a signed out visitor and then stops, whatever its pagination claims, so a search advertising 18 pages hands over four. Raising maxResults does not change that. Run several narrower searches instead, splitting by town or by job title.
Why are duplicates removed before charging?
Agencies repost the same role under several job ids, and you should not pay three times for one vacancy. Rows with the same title, employer, location and salary are collapsed by dedupeSimilar, which is on by default, and the charge happens after that.
What does the annualised salary mean?
It is the published figure converted to a yearly equivalent so hourly, daily and annual roles sort in one column. The conversion assumes a 37.5 hour week and 52 weeks. It is for comparison rather than contractual accuracy, and salaryRaw always carries the original text.
Do I need a proxy?
A residential UK proxy is set by default and you should leave it on. Totaljobs blocks datacentre traffic, so without one the run finishes with an empty dataset and a status message saying the site refused the connection, rather than pretending the search matched nothing.
Do I need a Totaljobs account?
No. This reads the public search results, the pages any visitor sees without signing in, so there are no credentials to supply and none are ever stored.
⚖️ Is it legal to scrape Totaljobs?
This reads Totaljobs' public search results, the pages any visitor sees without an account. Job adverts are business information published by employers, not personal data about individuals.
Scraping publicly available data is legal in the UK, the EU and the US. Nothing here logs in or touches anything behind an account. If you go on to combine this data with personal data, that is on you to handle under GDPR. Apify's ethical scraping guide covers the wider picture.
👍 Your feedback
Found a bug, or want a field that is not here yet? Open an issue on the Actor's Issues tab. Requests that make the data more useful get built, and problems get fixed quickly.
🔎 You might also like
| Actor | What it does |
|---|---|
| Indeed Jobs Scraper | Indeed listings with parsed salary figures, past the 15 job sign in wall |
| LinkedIn Jobs Scraper | LinkedIn jobs with company enrichment and CV keyword matching, no login needed |
| Reed Jobs Scraper | UK jobs from Reed with applicant counts and annualised salaries |