Singapore PEB Professional Engineers Scraper
Pricing
from $6.15 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
7 days ago
Last modified
Categories
Share
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
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
maxEngineers | integer | no | 10 | Maximum number of engineer records to collect. The full register holds roughly 2,700 engineers. |
searchQuery | string | no | (empty) | Filter by any keyword: name, employer, branch or address, for example Arup, Land Transport Authority, Civil. Empty pulls the full register. |
branch | string | no | (empty) | Keep only engineers in this branch, for example Civil, Electrical, Mechanical, Chemical. |
sortByNewest | boolean | no | false | Sort by most recent registration date first. Off keeps source order. |
employerType | string | no | (empty) | Keep only engineers whose employer type contains this text, for example Private Sector, Public Sector. Case-insensitive. |
postalCodePrefix | string | no | (empty) | Keep only engineers whose employer postal code starts with this value, for example 06 or 069. Good for targeting a district. |
registeredFrom | string | no | (empty) | Keep only engineers registered on or after this date (YYYY-MM-DD). |
registeredTo | string | no | (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.
| Field | Type | Description |
|---|---|---|
regNo | string | PEB registration number, for example 4825. |
fullName | string | Registered engineer's full name. |
branch | string | Branch of engineering, for example Civil. |
dateOfRegistration | string | Registration date (YYYY-MM-DD), or null. |
yearOfRegistration | string | Year of registration, derived from the registration date. |
employerName | string | Employer or practice name. |
employerType | string | Employer type, for example Private Sector. |
employerAddress | string | Employer address as published. |
employerPostalCode | string | Singapore postal code parsed from the employer address, or null. |
contactNo | string | Employer contact number, or null. |
source | string | Always the PEB register via data.gov.sg. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
error | string | Present 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:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "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 (
resultevent). 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
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon 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.
Related scrapers
- Singapore MyCareersFuture Jobs Scraper: Singapore job listings with salary and company.
- Singapore Business Directory Scraper: Singapore business listings with contacts.
- Singapore SGX Listed Companies Scraper: SGX-listed company data.
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.
