UK HCPC Health Professionals Register Scraper avatar

UK HCPC Health Professionals Register Scraper

Pricing

from $25.50 / 1,000 results

Go to Apify Store
UK HCPC Health Professionals Register Scraper

UK HCPC Health Professionals Register Scraper

Scrape the UK HCPC register of 15 health professions (physiotherapists, paramedics, radiographers, dietitians and more). Search by name or HCPC registration number for name, registration number, profession, location, status and period. Export to JSON, CSV or Excel.

Pricing

from $25.50 / 1,000 results

Rating

0.0

(0)

Developer

Scrapers Lat

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

14 days ago

Last modified

Share

UK HCPC Health Professionals Register Scraper

UK HCPC Health Professionals Register Scraper

Here is one real result, with every field the actor returns:

{
"recordType": "hcpc_registrant",
"fullName": "Aaron Jones",
"registrationNumber": "PH93057",
"professionCode": "PH",
"profession": "Physiotherapist",
"location": "Truro",
"status": "Registered",
"registrationPeriod": "01/05/2026 to 30/04/2028",
"registrationPeriodStart": "01/05/2026",
"registrationPeriodEnd": "30/04/2028",
"detailUrl": "https://www.hcpc-uk.org/check-the-register/professional-registration-detail/?query=PH93057&profession=PH",
"source": "UK Health and Care Professions Council (HCPC) Register",
"observedAt": "2026-08-08T21:56:17.011Z",
"searchQuery": "Jones"
}

The most complete UK HCPC register scraper available. It returns every field the Health and Care Professions Council publishes for each registrant across all 15 professions, splits the registration period into start and end dates, and gives you name search per profession plus direct registration-number lookup to target exactly the registrants you need.

📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples

Apify Coverage Output Billing

Table of contents

What it does

The actor searches the UK Health and Care Professions Council register, applies the queries you pass as input (names within a chosen profession, or HCPC registration numbers), reads each matching registrant, and writes one normalized record per registrant to the run's dataset. Each record carries the full name, HCPC registration number, profession code and label, and (when fetchDetails is on) the location, registration status and registration period split into start and end dates. Missing source values are returned as null.

The register covers the 15 HCPC professions: arts therapists, biomedical scientists, chiropodists and podiatrists, clinical scientists, dietitians, hearing aid dispensers, occupational therapists, operating department practitioners, orthoptists, paramedics, physiotherapists, practitioner psychologists, prosthetists and orthotists, radiographers, and speech and language therapists.

The HCPC register sits behind a web application firewall. The actor is HTTP-only; each page is fetched through a hosted solver service, so you never configure a proxy or a browser. Because each read passes through the solver, larger runs take longer than an unprotected source.

Quickstart

Open the actor, paste this into the input, and press Run. It returns physiotherapists named Jones with location, status and period.

{
"queries": ["Jones"],
"profession": "PH",
"maxRecords": 20
}

Each entry in queries is searched separately. A plain name is searched within the profession set in profession. An HCPC registration number (for example PH09765, PA12345) is looked up directly and its profession is detected from the prefix, so the profession selector is ignored for those.

Input reference

FieldTypeRequiredDefaultDescription
queriesstring[]yes(none)One or more names or HCPC registration numbers. A name is searched within profession; a registration number (for example PH09765) is looked up directly with its profession detected from the prefix. Each entry is searched separately.
professionenumnoPHWhich of the 15 professions to search when the query is a name. One of AS, BS, CH, CS, DT, HAD, OT, ODP, OR, PA, PH, PYL, PO, RA, SL. Ignored for registration-number lookups.
fetchDetailsbooleannotrueOpen each registrant's profile to add location, status and registration period. Turn off for a faster name and registration-number listing.
maxRecordsintegerno20Maximum number of registrants to collect across all searches.

Provide at least one entry in queries. Profession codes map to labels such as PH = Physiotherapist, PA = Paramedic, RA = Radiographer, DT = Dietitian.

Output reference

One dataset item per registrant. Types: string, or null when the source value is absent.

FieldTypeDescription
recordTypestringAlways hcpc_registrant.
fullNamestringFull registered name of the registrant.
registrationNumberstringHCPC registration number, unique per registrant.
professionCodestringTwo- or three-letter HCPC profession code, for example PH.
professionstringProfession label, for example Physiotherapist.
locationstringRegistrant location, present when fetchDetails is on, else null.
statusstringRegistration status, for example Registered, present when fetchDetails is on.
registrationPeriodstringFull registration period text, for example 01/05/2026 to 30/04/2028.
registrationPeriodStartstringStart of the current registration period (DD/MM/YYYY).
registrationPeriodEndstringEnd of the current registration period (DD/MM/YYYY).
detailUrlstringDirect link to the registrant's detail page on the HCPC register.
searchQuerystringThe name or number this record was found under.
sourcestringAlways UK Health and Care Professions Council (HCPC) Register.
observedAtstringISO 8601 timestamp of when the record was collected.
errorstringPresent only on a failed run; a single item with this field is written instead of registrants.

Example output record

Real record from a live run (input {"queries":["Jones"],"profession":"PH","maxRecords":20}):

{
"recordType": "hcpc_registrant",
"fullName": "Aaron Jones",
"registrationNumber": "PH93057",
"professionCode": "PH",
"profession": "Physiotherapist",
"location": "Truro",
"status": "Registered",
"registrationPeriod": "01/05/2026 to 30/04/2028",
"registrationPeriodStart": "01/05/2026",
"registrationPeriodEnd": "30/04/2028",
"detailUrl": "https://www.hcpc-uk.org/check-the-register/professional-registration-detail/?query=PH93057&profession=PH",
"source": "UK Health and Care Professions Council (HCPC) Register",
"observedAt": "2026-08-08T21:56:17.011Z",
"searchQuery": "Jones"
}

Run via API and CLI

Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.

Run synchronously and get dataset items in one call:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~uk-hcpc-professionals-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"queries":["Jones"],"profession":"PH","maxRecords":20}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~uk-hcpc-professionals-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"queries":["Smith"],"profession":"PA","maxRecords":100}'

Apify CLI:

apify call scrapers_lat/uk-hcpc-professionals-scraper \
--input '{"queries":["PH09765"]}'

Fetch results

Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:

# JSON
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"
# CSV
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"
# Paginate large datasets
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"

<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.

Billing and limits

  • Pay per result. You are charged per registrant returned (result event). See the pricing tab for the current per-result price.
  • Detail add-on. When fetchDetails is on, each registrant whose profile is successfully fetched (for location, status and period) also charges a details event. Set fetchDetails to false to skip this.
  • No charge on failure. If a run errors or matches nothing, the actor writes a single item with an error field and does not charge for it.
  • Spend cap respected. Set maxTotalChargeUsd on the run; once reached, the actor stops emitting and charging further billable results.
  • Free Apify plans are capped at 10 records per run. Upgrade for a higher maxRecords.
  • Solver-fronted source. The HCPC register is behind a WAF, so pages are fetched through a hosted solver. Runs work within a wall-clock budget; large name searches are best split into smaller runs or done by exact registration number.

FAQ and troubleshooting

A run returned only an error record. Why? You ran with an empty queries, or the search matched nothing. Add a name or an HCPC registration number. These cases are not charged.

How do I verify one specific registrant fastest? Put their HCPC registration number in queries (for example PH09765). The profession is detected from the prefix and the profile is read directly, no profession selector needed.

Why are location, status or the period fields null? Those come from each registrant's profile and appear only when fetchDetails is on. With it off, the actor returns the fast name, number and profession fields.

How do I search a profession other than physiotherapist? Set profession to the relevant code, for example PA for paramedic, RA for radiographer, DT for dietitian. It applies to name searches only.

A big search seems to stop early. Why? Each read passes through the WAF solver, so the actor works within a wall-clock budget and stops cleanly when it runs low. Split large jobs into several runs or use exact registration numbers.

Is this an official HCPC tool? No. This actor is independent and has no affiliation with the Health and Care Professions Council. It reads only data the HCPC publishes in its public online register. Use it in accordance with the HCPC terms.

More scrapers at scrapers.lat

Built and maintained by scrapers.lat, where we publish scrapers for US, UK, European and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.


Independent tool, not affiliated with the UK Health and Care Professions Council. Accesses only the publicly available HCPC online register. Use in accordance with the HCPC terms.