VOOZH about

URL: https://apify.com/memo23/barnsleycvs-scraper

⇱ Barnsley CVS Jobs Scraper Β· Apify


Pricing

from $1.99 / 1,000 results

Go to Apify Store

Barnsley CVS Jobs Scraper

Scrape the barnsleycvs.org.uk Webflow job board for Barnsley voluntary-sector vacancies. Title, employer, parsed salary, closing date from the listing; full HTML description per job via optional detail enrichment. ~5-10 live vacancies. JSON or CSV out.

Pricing

from $1.99 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Muhamed Didovic

Muhamed Didovic

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 days ago

Last modified

Categories

Share

Scrape the barnsleycvs.org.uk Webflow-hosted job board. The /jobs listing renders every vacancy server-side with title, employer, salary (parsed), and closing date. Optional detail enrichment fetches each /job-positions/<slug> page for the full HTML description. JSON or CSV out, no compute charge per run, just per result.

How it works

πŸ‘ How Barnsley CVS Scraper works

✨ Why use this scraper?

Barnsley CVS hosts the town's voluntary-sector jobs board for member charities β€” children's services, fundraising, project work, finance, community engagement. Tracking Barnsley nonprofit hiring? Building a regional South Yorkshire dashboard? Looking for partner orgs by employer?

  • 🎯 Two starting points. The /jobs listing URL (default) or any direct /job-positions/<slug> URL (filters the listing).
  • ⚑ Single HTTP call for the listing. Webflow renders every CMS Collection item server-side β€” title, employer, salary, closing date all inline.
  • πŸ“‹ Detail-page enrichment. Optional one-fetch-per-job to extract the full HTML description from /job-positions/<slug>.
  • πŸ’° Salary parsed. "Β£26,403 - Β£28,142 per annum" β†’ structured {currency, min, max, raw}.
  • πŸ“… Closing date inline. Card's "Deadline: …" line captured.
  • πŸ™οΈ Barnsley focus. Member charities β€” GROW, Roundabout Ltd, Barnsley CVS itself, Rotherham Federation of Communities Ltd, and more.
  • πŸ“€ Clean exports. One row per vacancy with optional full HTML description. JSON + CSV exported automatically.

🎯 Use cases

TeamWhat they build
Barnsley CVS membersCross-charity recruitment intelligence in their own borough
South Yorkshire CVS networkAggregate with VA Rotherham + Sheffield for regional dashboards
FundersSalary intelligence across small Barnsley charities
Sector recruitersDaily new-vacancy feeds
Volunteer co-ordinatorsTrack partner orgs hiring for paid roles

πŸ“₯ Supported inputs

URL patternBehaviour
https://barnsleycvs.org.uk/jobsFull listing (default)
https://barnsleycvs.org.uk/job-positions/<slug>Single job β€” fetches the listing and filters to that slug

Leave startUrls empty for the full listing.

Not supported: hosts outside barnsleycvs.org.uk.

πŸ”„ How it works

  1. Fetch the /jobs listing once (Webflow SSR HTML).
  2. Find every .collection-item-job-position block using cheerio.
  3. For each card, extract:
    • .job-position-name β†’ title + slug
    • Three .info-job-wrappr blocks in order: employer, deadline, salary
  4. For each card (when enrichDetail: true), fetch /job-positions/<slug> for the full HTML description.
  5. Push one normalised row per vacancy to the dataset.

βš™οΈ Input parameters

ParameterTypeDefaultDescription
startUrlsarray["https://barnsleycvs.org.uk/jobs"]Listing URL or single-job URLs (slug filter).
enrichDetailbooleantrueWhen true, fetches each /job-positions/<slug> page for the full HTML description. Disable to skip β€” listing alone gives title, employer, salary, closing date.
maxItemsinteger1000Hard cap on rows pushed (typically 5-10 live).
maxConcurrencyinteger3Parallel detail-page fetch limit.
maxRequestRetriesinteger5Retries before a failed request is given up.
proxyobjectNo proxyWebflow CDN does not anti-bot.

πŸ“Š Output overview

Each scraped vacancy is one single dataset row of type: "job". Listing fields merged with optional detail-page HTML description.

πŸ“¦ Output sample

{
"type":"job",
"source":"barnsleycvs.org.uk",
"jobId":"project-worker",
"slug":"project-worker",
"jobUrl":"https://barnsleycvs.org.uk/job-positions/project-worker",
"title":"Project Worker",
"description":"<div>Project Worker role at GROW supporting young people in Barnsley…</div>",
"descriptionText":"Project Worker role at GROW supporting young people in Barnsley…",
"companyName":"GROW",
"companyWebsite":null,
"companyDomain":null,
"location":"Barnsley, South Yorkshire",
"remote":false,
"salary":{
"currency":"GBP",
"min":26403,
"max":28142,
"raw":"Β£26,403 - Β£28,142 per annum"
},
"salaryRaw":"Β£26,403 - Β£28,142 per annum",
"categories":[],
"employmentTypes":[],
"contractType":null,
"status":"publish",
"postedDate":null,
"closingDate":"10 am 18th May 2026",
"modifiedDate":null,
"applyType":"internal",
"applyUrl":"https://barnsleycvs.org.uk/job-positions/project-worker",
"applyEmail":null,
"externalApplyUrl":null,
"scrapedAt":"2026-05-20T00:13:00.000Z"
}

πŸ—‚ Key output fields

GroupFields
Identifierstype, source, jobId, slug, jobUrl, scrapedAt
Contenttitle (from .job-position-name), description (HTML, from detail page when enrichDetail: true), descriptionText (plain)
DatesclosingDate (from card "Deadline:" field)
EmployercompanyName (from first .info-job-wrappr)
Locationlocation (always Barnsley, South Yorkshire)
Compensationsalary.{currency, min, max, raw}, salaryRaw
Apply flowapplyType, applyUrl (the BCVS page)

❓ FAQ

Why is applyType always "internal"? Barnsley CVS cards don't surface an mailto: or outbound URL β€” the "Learn more" button goes to their own /job-positions/<slug> page where the applicant follows the charity's own instructions. The actor preserves the BCVS URL in applyUrl.

Why are some closing dates verbose ("10 am 18th May 2026")? The deadline value comes verbatim from the Webflow CMS β€” charities format it freely. We don't normalise to ISO because the format varies.

Why is location always "Barnsley, South Yorkshire"? Barnsley CVS doesn't tag location per job β€” every member is in the borough. Set as a constant for downstream geocoding consistency.

Can I scrape private pages or applicant data? No. Only the public /jobs listing and public /job-positions/<slug> pages.

How do I limit results? Set maxItems. With only 5-10 live vacancies, maxItems: 100 covers everything.

πŸ’¬ Support

πŸ›  Additional services

  • Custom output shape, additional fields, or one-off datasets: muhamed.didovic@gmail.com
  • Similar scrapers for other CVS / volunteer hubs (VA Rotherham, Doing Good Leeds, VAS Sheffield, York CVS): drop an email.
  • For API access (no Apify fee, just usage): muhamed.didovic@gmail.com

πŸ”Ž Explore more scrapers

See other scrapers at memo23's Apify profile β€” covering job boards, real estate, social media, and more.


⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Barnsley CVS, barnsleycvs.org.uk, Webflow Inc., or any of their subsidiaries or affiliates. All trademarks mentioned are the property of their respective owners.

The scraper accesses only the publicly available /jobs listing page and public /job-positions/<slug> pages on barnsleycvs.org.uk β€” no authenticated endpoints, recruiter-only features, or content behind a login. Users are responsible for ensuring their use complies with barnsleycvs.org.uk's Terms of Service, applicable data-protection law (GDPR, CCPA, etc.), and any contractual obligations of their own organisation.


SEO Keywords

barnsley cvs scraper, scrape barnsleycvs.org.uk, barnsley cvs jobs api, barnsley voluntary sector jobs scraper, barnsley charity jobs scraper, south yorkshire charity recruitment data, Apify barnsley cvs, barnsley nonprofit jobs api, barnsley third sector jobs scraper, barnsley community sector jobs, webflow cms scraper, webflow collection scraper, charityjob alternative scraper, va rotherham alternative scraper, vassheffield alternative scraper, doing good leeds alternative scraper, uk cvs jobs scraper, south yorkshire voluntary sector recruitment data, barnsley hiring trends data

You might also like

VAS Sheffield Jobs Scraper

memo23/vassheffield-scraper

Scrape voluntary-sector vacancies from jobs.vas.org.uk (Voluntary Action Sheffield) via WP-JSON. Title, sector taxonomy, posted date, external apply URL extracted from listing body, full description. ~25 live vacancies in one request. JSON or CSV out, billed per result

πŸ‘ User avatar

Muhamed Didovic

2

VA Rotherham Jobs Scraper

memo23/varotherham-scraper

Scrape the varotherham.org.uk South Yorkshire voluntary-sector job board (Wix CMS). One HTTP request, every job inline: title, employer, location, closing date. Rotherham / Barnsley / Doncaster / Sheffield charities. JSON or CSV out, billed per result.

πŸ‘ User avatar

Muhamed Didovic

2

Bassetlaw CVS Jobs Scraper

memo23/bcvs-scraper

Scrape bcvs.org.uk (Bassetlaw + Bolsover Drupal 10 site). HTML scrape captures title, body, closing date, contact email, AND the job-spec PDF attachment URL for downstream OCR. ~3-10 live vacancies. No anti-bot. JSON or CSV out, billed per result.

πŸ‘ User avatar

Muhamed Didovic

2

Skillshouse Jobs Scraper

memo23/skillshouse-scraper

Scrape skillshouse.co.uk β€” Bradford district employment & skills hub powered by Alcium ATS. SSR HTML cards parsed in one HTTP fetch: ~100 vacancies with title, employer, location, contract type, logo. Optional detail fetch for salary + closing date. JSON or CSV out.

πŸ‘ User avatar

Muhamed Didovic

2

Community First Yorkshire Jobs Scraper

memo23/cfy-scraper

Scrape jobs and other portfolio content from communityfirstyorkshire.org.uk via WP-JSON portfolio CPT. Filter by taxonomy (default jobs β‰ˆ 6 vacancies). Title, full HTML, location, apply email/URL, best-effort closing date + salary regex. JSON or CSV out.

πŸ‘ User avatar

Muhamed Didovic

2

Snicket Jobs Scraper

memo23/snicket-scraper

Scrape snicket.org β€” Bradford and West Yorkshire community-sector vacancies. RSS + labelled detail-page extraction: title, organisation, salary, hours, closing date, payment schedule, contact name/email/phone, full HTML description. JSON or CSV out, billed per result

πŸ‘ User avatar

Muhamed Didovic

2

Reed.co.uk Jobs Scraper

crawlergang/reed-jobs-scraper

Scrape job listings from Reed.co.uk - the UK's #1 job site with 250K+ live vacancies. Search by keywords and location. Returns structured job data including title, company, salary, location, job type, remote status, and description.

2

5.0

Reed.co.uk Jobs Scraper

crawlerbros/reed-jobs-scraper

Scrape job listings from Reed.co.uk - the UK's #1 job site with 250K+ live vacancies. Search by keywords and location. Returns structured job data including title, company, salary, location, job type, remote status, and description.

Reed.co.uk Job Scraper - UK Jobs

santamaria-automations/reed-uk-scraper

Scrapes job listings from Reed.co.uk, the UK's largest job board with 250,000+ live vacancies. Extract title, company, salary, location, employment type, and full description. Supports multi-query search with deduplication. HTTP-only, 128MB.

NHS Jobs Scraper

crawlerbros/nhs-jobs-scraper

Extract UK NHS job vacancies from jobs.nhs.uk including title, employer, salary, band, pay scheme, location, contract type, closing date, full description, and more.

15

5.0