Singapore Government Data API avatar

Singapore Government Data API

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Singapore Government Data API

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

kane liu

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

12 hours ago

Last modified

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.

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.

  • 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

WhoWhat
Property analystsSearch HDB resale flat transaction data by town, street, or flat type
Due diligence teamsLook up ACRA business registrations and company details
Government suppliersMonitor GeBIZ procurement tenders and contract opportunities
Healthcare researchersAccess MOH inpatient facility data and bed counts
Legal professionalsSearch Singapore Courts Judgments Hub for case law
Data analystsCombine multiple Singapore government datasets in one query

What data can Singapore Government Data Search extract?

SourceData typeExample fields
ACRA business registryCompany and business registrationsentity_name, uen, status, type
HDB resale pricesFlat resale transaction recordstown, flat_type, storey_range, resale_price, month
GeBIZ procurementGovernment tender noticestender_no, agency, title, close_date
MOH inpatient facilitiesHospital and facility bed countsfacility_name, beds, type
MOH portalMinistry of Health resource linkstitle, url, category
Judiciary judgmentsCourt judgment referencescase_name, court, date

How to search Singapore data

  1. Open the Actor in Apify Console
  2. Enter search terms (e.g. "DBS", "Tampines", "hospital", "tender")
  3. Click Start — the Actor queries all 6 sources in parallel
  4. 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)

CategorySourceProduct ID
BusinessACRA business registrysg_acra_business
PropertyHDB resale flat pricessg_hdb_resale
ProcurementGeBIZ government tenderssg_gebiz_procurement
HealthMOH inpatient facilities & bedssg_moh_inpatient_facilities_beds
HealthMOH portal navigation linkssg_moh_portal_navigation_links
LegalCourts Judgments Hubsg_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 ApifyClient
client = 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)

Other Data API Actors