Singapore PEB Professional Engineers Scraper avatar

Singapore PEB Professional Engineers Scraper

Pricing

from $6.15 / 1,000 results

Go to Apify Store
Singapore PEB Professional Engineers Scraper

Singapore PEB Professional Engineers Scraper

Scrape the official Singapore Professional Engineers (PEB) register from data.gov.sg. Get registration number, full name, engineering branch, registration date, employer name, employer address and contact number. Export to JSON, CSV or Excel.

Pricing

from $6.15 / 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

7 days ago

Last modified

Share

Singapore PEB Professional Engineers Scraper

Singapore PEB Professional Engineers Scraper

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

{
"regNo": "4825",
"fullName": "Aden Chua Ming Jian",
"branch": "Civil",
"dateOfRegistration": "2016-10-18",
"yearOfRegistration": "2016",
"employerName": "Arup Singapore Private Limited",
"employerType": "Private Sector",
"employerAddress": "182 Cecil Street 06-01 Frasers Tower 069547 SG",
"employerPostalCode": "069547",
"contactNo": "64112721",
"source": "Singapore Professional Engineers Board (PEB) register via data.gov.sg",
"observedAt": "2026-08-10T14:39:18.730Z"
}

The most complete Singapore PEB professional engineers scraper available. It returns every field the Professional Engineers Board register exposes for each registered engineer, including registration number and date, engineering branch, employer name, type, address and contact number, plus derived fields, and gives you six filters to target exactly the engineers you need.

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

Apify Coverage Output Billing

Table of contents

What it does

The actor reads the Singapore Professional Engineers Board (PEB) register (published via data.gov.sg), applies the filters you pass, and writes one normalized record per registered engineer to the run's dataset. Each record carries the registration number and date, engineering branch, employer name, type and address, and a contact number. The employer postal code is parsed out of the address as a derived field, the registration year is extracted for easy grouping, and missing source values are returned as null. The full register holds roughly 2,700 professional engineers.

Quickstart

Open the actor, paste this into the input, and press Run. It returns up to 10 civil engineers employed at Arup.

{
"searchQuery": "Arup",
"branch": "Civil",
"maxEngineers": 10
}

Every input field is optional. Leave searchQuery empty to pull the full register.

Input reference

FieldTypeRequiredDefaultDescription
maxEngineersintegerno10Maximum number of engineer records to collect. The full register holds roughly 2,700 engineers.
searchQuerystringno(empty)Filter by any keyword: name, employer, branch or address, for example Arup, Land Transport Authority, Civil. Empty pulls the full register.
branchstringno(empty)Keep only engineers in this branch, for example Civil, Electrical, Mechanical, Chemical.
sortByNewestbooleannofalseSort by most recent registration date first. Off keeps source order.
employerTypestringno(empty)Keep only engineers whose employer type contains this text, for example Private Sector, Public Sector. Case-insensitive.
postalCodePrefixstringno(empty)Keep only engineers whose employer postal code starts with this value, for example 06 or 069. Good for targeting a district.
registeredFromstringno(empty)Keep only engineers registered on or after this date (YYYY-MM-DD).
registeredTostringno(empty)Keep only engineers registered on or before this date (YYYY-MM-DD).

Filters combine with logical AND.

Output reference

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

FieldTypeDescription
regNostringPEB registration number, for example 4825.
fullNamestringRegistered engineer's full name.
branchstringBranch of engineering, for example Civil.
dateOfRegistrationstringRegistration date (YYYY-MM-DD), or null.
yearOfRegistrationstringYear of registration, derived from the registration date.
employerNamestringEmployer or practice name.
employerTypestringEmployer type, for example Private Sector.
employerAddressstringEmployer address as published.
employerPostalCodestringSingapore postal code parsed from the employer address, or null.
contactNostringEmployer contact number, or null.
sourcestringAlways the PEB register via data.gov.sg.
observedAtstringISO 8601 timestamp of when the record was collected.
errorstringPresent only on a failed run: a single item with a populated error field is written instead of results.

Example output record

Real record from a live run (input {"searchQuery": "Arup", "branch": "Civil", "maxEngineers": 10}):

{
"regNo": "4825",
"fullName": "Aden Chua Ming Jian",
"branch": "Civil",
"dateOfRegistration": "2016-10-18",
"yearOfRegistration": "2016",
"employerName": "Arup Singapore Private Limited",
"employerType": "Private Sector",
"employerAddress": "182 Cecil Street 06-01 Frasers Tower 069547 SG",
"employerPostalCode": "069547",
"contactNo": "64112721",
"source": "Singapore Professional Engineers Board (PEB) register via data.gov.sg",
"observedAt": "2026-08-10T14:39:18.730Z"
}

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~singapore-peb-engineers-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"branch":"Civil","employerType":"Private Sector","maxEngineers":25}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~singapore-peb-engineers-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"searchQuery":"Land Transport Authority","maxEngineers":100}'

Apify CLI:

apify call scrapers_lat/singapore-peb-engineers-scraper \
--input '{"registeredFrom":"2020-01-01","sortByNewest":true,"maxEngineers":50}'

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 engineer record returned (result event). See the pricing tab for the current per-result price.
  • No charge on failure. If a run errors, the actor writes a single item with a populated error field and does not charge for it. Empty runs cost nothing.
  • 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 higher maxEngineers.

FAQ and troubleshooting

A run returned 0 records. Why? The filter combination matched nothing in the register. Loosen the filters (remove branch or employerType, or broaden the keyword). Zero-result runs are not charged.

How do I get the whole register? Leave searchQuery, branch and the other filters empty and set maxEngineers high. The register holds roughly 2,700 engineers.

How do I target a district? Use postalCodePrefix, for example 06 or 069, to keep only engineers whose employer postal code starts with that value.

Why is a field null? The source did not publish that value for the engineer. Missing source values are returned as null, never invented.

Is this an official PEB tool? No. This actor is independent and has no affiliation with the Professional Engineers Board or the Government of Singapore. It reads only publicly available register data published via data.gov.sg. Use the results in accordance with the source's terms.

More scrapers at scrapers.lat

Built and maintained by scrapers.lat, where we publish scrapers for public platforms: professional registries, company data, government data, finance and more. Browse the catalog or request a custom scraper at scrapers.lat.


Independent tool, not affiliated with the Professional Engineers Board or the Government of Singapore. Accesses only publicly available register data. Use the results in accordance with the source's terms.