Singapore Government Data API
Pricing
from $3.00 / 1,000 results
Singapore Government Data API
Searches Singapore government data across 6 official sources including HDB resale prices, ACRA business entities, GeBIZ procurement, MOH facilities, MOH portal links, and Courts Judgments Hub via the SIP API.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
kane liu
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
12 hours ago
Last modified
Categories
Share
Singapore Government Data Search
Search 6 official Singapore government data sources in a single API call — ACRA business registry, HDB resale flat prices, GeBIZ procurement tenders, MOH inpatient facilities and beds, MOH portal resources, and Courts Judgments Hub. All data from official Singapore government open data portals through the SIP Public Data Gateway.
What is Singapore Government Data Search?
Singapore Government Data Search is an Apify Actor that queries official Singapore government databases across business, property, health, legal, and procurement domains. Instead of visiting data.gov.sg, ACRA, HDB, GeBIZ, and MOH portals separately, you search them all at once.
The Actor calls the SIP Public Data Gateway — a unified API that normalizes responses from 6 Singapore data products. No browser, no scraping — just HTTPS API calls to official government sources.
Why use Singapore Government Data Search?
- One search, 6 sources — Query ACRA companies, HDB resale prices, GeBIZ tenders, MOH facilities, and court judgments simultaneously
- Official government data — All sources are public databases from Singapore government agencies
- HDB resale intelligence — Search Singapore's most-used property dataset by town, flat type, or street name
- Business verification — ACRA company and business name lookups for due diligence
- Structured JSON output — Every record includes source metadata for traceability
Use cases
| Who | What |
|---|---|
| Property analysts | Search HDB resale flat transaction data by town, street, or flat type |
| Due diligence teams | Look up ACRA business registrations and company details |
| Government suppliers | Monitor GeBIZ procurement tenders and contract opportunities |
| Healthcare researchers | Access MOH inpatient facility data and bed counts |
| Legal professionals | Search Singapore Courts Judgments Hub for case law |
| Data analysts | Combine multiple Singapore government datasets in one query |
What data can Singapore Government Data Search extract?
| Source | Data type | Example fields |
|---|---|---|
| ACRA business registry | Company and business registrations | entity_name, uen, status, type |
| HDB resale prices | Flat resale transaction records | town, flat_type, storey_range, resale_price, month |
| GeBIZ procurement | Government tender notices | tender_no, agency, title, close_date |
| MOH inpatient facilities | Hospital and facility bed counts | facility_name, beds, type |
| MOH portal | Ministry of Health resource links | title, url, category |
| Judiciary judgments | Court judgment references | case_name, court, date |
How to search Singapore data
- Open the Actor in Apify Console
- Enter search terms (e.g. "DBS", "Tampines", "hospital", "tender")
- Click Start — the Actor queries all 6 sources in parallel
- Download results as JSON, CSV, or Excel
Example input
{"searchTerms": ["Tampines", "Clementi"],"maxResultsPerSource": 50}
Output
Each row is a record from a Singapore government source:
{"town": "TAMPINES","flat_type": "4 ROOM","storey_range": "07 TO 09","resale_price": "520000","month": "2026-03","_product_id": "sg_hdb_resale","_source": "hdb_resale","_search_term": "Tampines","_collected_at": "2026-04-08T14:00:00Z"}
How much does it cost?
Pay-per-event pricing at $3.00 per 1,000 records returned.
- Quick lookup (1 term): ~$0.01-0.05
- Full search (5 terms, all sources): ~$0.10-0.50
No browser overhead. Control costs with maxResultsPerSource.
Data sources (6 Singapore products)
| Category | Source | Product ID |
|---|---|---|
| Business | ACRA business registry | sg_acra_business |
| Property | HDB resale flat prices | sg_hdb_resale |
| Procurement | GeBIZ government tenders | sg_gebiz_procurement |
| Health | MOH inpatient facilities & beds | sg_moh_inpatient_facilities_beds |
| Health | MOH portal navigation links | sg_moh_portal_navigation_links |
| Legal | Courts Judgments Hub | sg_judiciary_judgments_hub_links |
FAQ
Can I search HDB resale by specific town? Yes. Use town names like "Tampines", "Clementi", or "Ang Mo Kio" as search terms. Results include transaction prices, flat types, and storey ranges.
Does ACRA data include UEN numbers? Yes. ACRA business entity records include UEN (Unique Entity Number), entity name, status, and registration type.
How current is the data? HDB resale data updates monthly. GeBIZ tenders update as agencies publish. ACRA data reflects the latest published registry state.
Use as MCP Tool (AI Agent Integration)
This Actor works as an MCP tool — AI agents (Claude, GPT, Cursor) can discover and run it automatically.
Quick setup (Claude Desktop / Cursor / VS Code)
Add to your MCP config:
{"mcpServers": {"apify": {"url": "https://mcp.apify.com","headers": {"Authorization": "Bearer YOUR_APIFY_TOKEN"}}}}
Then ask your AI: "Search for DBS Bank in Singapore government databases"
Direct API call
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("lentic_clockss/singapore-government-data-search").call(run_input={"searchTerms": ["DBS"], "maxResultsPerSource": 50})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)