UK GDC Dentists & Dental Professionals Register Scraper avatar

UK GDC Dentists & Dental Professionals Register Scraper

Pricing

from $17.00 / 1,000 results

Go to Apify Store
UK GDC Dentists & Dental Professionals Register Scraper

UK GDC Dentists & Dental Professionals Register Scraper

Scrape the UK General Dental Council register of dentists and dental care professionals. Search by surname, town or GDC number for name, registration number, type, status, dates and qualifications. Export to JSON, CSV or Excel.

Pricing

from $17.00 / 1,000 results

Rating

0.0

(0)

Developer

Scrapers Lat

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

20 days ago

Last modified

Share

UK GDC Dentists & Dental Professionals Register Scraper

UK GDC Dentists & Dental Professionals Register Scraper

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

{
"name": "Aatush Ghanshyam Patel",
"surname": "Patel",
"forenames": "Aatush Ghanshyam",
"registrationNumber": "71121",
"registrantType": "Dentist",
"status": "Registered",
"register": "Dentists",
"firstRegistered": "01 Aug 1995",
"registeredFrom": "01 Aug 1995",
"registeredUntil": "31 Dec 2026",
"qualifications": "BDS Lond 1995",
"specialistLists": null,
"annotations": null,
"searchTown": "London",
"searchSurname": "Patel",
"profileUrl": "https://olr.gdc-uk.org/SearchRegister/SearchResult?Register=100000000&FirstNameSoundsLike=False&Surname=Patel&SurnameSoundsLike=False&Town=London&IncludeErasedRegistrants=False&RegistrationNumber=71121&SortAscending=True",
"source": "UK General Dental Council",
"observedAt": "2026-08-06T16:03:31.609Z",
"error": null
}

The most complete UK dental register scraper available. It returns every field the General Dental Council publishes for each registrant, plus optional per-registrant detail (first-registered date, registration period, qualifications), and gives you five filters to target exactly the dentists or dental care professionals you need.

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

Apify Coverage Output Billing

Table of contents

What it does

The actor searches the statutory register of the UK General Dental Council, applies the filters you pass as input (surnames, towns, first name, register, GDC numbers), paginates the results, and writes one normalized record per registrant to the run's dataset. Each record carries the full name, GDC registration number, registrant type, registration status, and the register searched. When withDetails is on, the actor opens each registrant's profile and adds the first-registered date, current registration period, held qualifications, specialist lists and annotations. Missing source values are returned as null.

Data covers the two GDC registers: Dentists, and Dental Care Professionals (hygienists, therapists, dental nurses, dental technicians, clinical dental technicians and orthodontic therapists). All anti-bot handling is internal; you never configure a proxy.

Quickstart

Open the actor, paste this into the input, and press Run. It returns registered dentists named Patel in London with full profile detail.

{
"surnames": ["Patel"],
"towns": ["London"],
"register": "dentists",
"maxRegistrants": 40
}

Provide at least one surname in surnames, or one GDC number in registrationNumbers. Each surname (and each town) runs its own search, so you can build a larger list in one run. A common surname with no town may return too many results; add a town or a first name to narrow it.

Input reference

FieldTypeRequiredDefaultDescription
surnamesstring[]conditional(none)One or more surnames to search, for example ["Patel"]. Each surname runs its own search. Required unless you pass registrationNumbers.
townsstring[]no(any)Restrict results to one or more towns or cities, for example ["London", "Leicester"]. Useful to narrow a common surname.
firstNamestringno(empty)Filter to registrants whose first name matches this value.
registerenumnodentistsWhich register to search: dentists, dcp (Dental Care Professionals), or all.
registrationNumbersstring[]no(none)Look up specific registrants directly by GDC registration number. Can be used with or without surnames.
includeErasedbooleannofalseInclude registrants who have been erased or are no longer currently registered.
withDetailsbooleannotrueOpen each registrant's profile page to also capture first-registered date, registration period and qualifications. Turn off for faster, lighter runs.
maxRegistrantsintegerno40Maximum number of registrant records to collect across the whole run.

Searches run as a surname-by-town matrix; an empty towns list searches nationwide.

Output reference

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

FieldTypeDescription
namestringFull name (forenames plus surname).
surnamestringRegistrant surname.
forenamesstringRegistrant forenames.
registrationNumberstringGDC registration number, unique per registrant.
registrantTypestringDentist or Dental Care Professional.
statusstringRegistration status, for example Registered.
registerstringRegister searched: Dentists, Dental Care Professionals, or All Registers.
firstRegisteredstringDate first registered with the GDC, present when withDetails is on.
registeredFromstringStart of the current registration period, present when withDetails is on.
registeredUntilstringEnd of the current registration period, present when withDetails is on.
qualificationsstringHeld qualifications, present when withDetails is on, else null.
specialistListsstringSpecialist lists the registrant is on, or null.
annotationsstringRegister annotations, or null.
searchTownstringTown used for this search, or null for a nationwide search.
searchSurnamestringSurname used for this search, or null for a direct GDC-number lookup.
profileUrlstringDirect link to the registrant's profile on the GDC register.
sourcestringAlways UK General Dental Council.
observedAtstringISO 8601 timestamp of when the record was collected.
errorstringnull on success. On a failed or empty run, a single item with a populated error field is written instead.

Example output record

Real record from a live run (input {"surnames":["Patel"],"towns":["London"],"register":"dentists"}):

{
"name": "Aatush Ghanshyam Patel",
"surname": "Patel",
"forenames": "Aatush Ghanshyam",
"registrationNumber": "71121",
"registrantType": "Dentist",
"status": "Registered",
"register": "Dentists",
"firstRegistered": "01 Aug 1995",
"registeredFrom": "01 Aug 1995",
"registeredUntil": "31 Dec 2026",
"qualifications": "BDS Lond 1995",
"specialistLists": null,
"annotations": null,
"searchTown": "London",
"searchSurname": "Patel",
"profileUrl": "https://olr.gdc-uk.org/SearchRegister/SearchResult?Register=100000000&FirstNameSoundsLike=False&Surname=Patel&SurnameSoundsLike=False&Town=London&IncludeErasedRegistrants=False&RegistrationNumber=71121&SortAscending=True",
"source": "UK General Dental Council",
"observedAt": "2026-08-06T16:03:31.609Z",
"error": null
}

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-gdc-dentists-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"surnames":["Patel"],"towns":["London"],"register":"dentists","maxRegistrants":25}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~uk-gdc-dentists-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"surnames":["Jones"],"towns":["Cardiff"],"register":"dcp","maxRegistrants":100}'

Apify CLI:

apify call scrapers_lat/uk-gdc-dentists-scraper \
--input '{"registrationNumbers":["71121"],"register":"dentists"}'

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 withDetails is on, each registrant whose profile page is successfully fetched also charges a details event. Set withDetails 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 maxRegistrants.
  • Too many results. A very common surname with no town can exceed what the register will list; the run logs this and asks you to add a town or first name.

FAQ and troubleshooting

A run returned only an error record. Why? You ran with neither surnames nor registrationNumbers, or the search matched nothing. Add a surname (and optionally a town), or a GDC number. These cases are not charged.

How do I search dental nurses and hygienists? Set register to dcp for Dental Care Professionals, or all to search both registers at once.

Why are qualifications and firstRegistered null? Those come from each registrant's profile page and appear only when withDetails is on. With withDetails off, the actor returns the fast list-level fields only.

How do I look up one specific dentist? Put their GDC number in registrationNumbers. You can pass several numbers to fetch many exact registrants in one run.

Can I include erased or historic registrants? Yes. Set includeErased to true to include registrants who are no longer currently registered.

Is this an official GDC tool? No. This actor is independent and has no affiliation with the General Dental Council. It reads only data the GDC publishes in its public online register. Use it in accordance with the GDC 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 General Dental Council. Accesses only the publicly available GDC online register. Use in accordance with the GDC terms.