# ACRA Singapore Company Registry Scraper (`hipersoft/acra-company-scraper`) Actor

Search and export Singapore's full ACRA corporate registry: UEN, entity name, status, incorporation date, address, SSIC industry codes, officers, former names and audit firms. Filter by name, status, entity type or industry. Public open data, no key.

- **URL**: https://apify.com/hipersoft/acra-company-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Lead generation, Other
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.004 / company scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## ACRA Singapore Company Registry Scraper

Search and export **Singapore's full ACRA corporate registry** into clean JSON, CSV or Excel. Get **UEN, entity name, status, incorporation date, full address, SSIC industry codes, officer count, former names and audit firms** for the ~1.5M entities registered with ACRA. Powered by ACRA's **open data** (data.gov.sg) — fast, no browser, no login, no key.

Perfect for **B2B lead generation, KYC / due diligence, market research, competitor mapping and enrichment**.

### Why this actor

Most Singapore-company scrapers are thin name/UEN lookups. This one covers the **entire registry across all 27 ACRA datasets** and returns the **full rich record**, including:

- 🏢 **Identity** — UEN, entity name, up to 15 former names, entity type, constitution, company type
- 📌 **Status & dates** — status (Live, Struck Off, In Liquidation…), incorporation date, UEN issue date, annual-return & account-due dates
- 🏭 **Industry** — primary & secondary **SSIC codes + descriptions** and user-described activities
- 📍 **Address** — structured (block, street, unit, building, postal) plus a formatted one-line address
- 👥 **Governance** — officer count and up to 5 audit firms (name + UEN)

### Search & filter

- **`query`** — full-text search across the registry (name, keyword, UEN)
- **`status`** — e.g. `Live`, `Cancelled`, `Struck Off`
- **`entityType`** — e.g. `Local Company`, `Sole Proprietorship/ Partnership`
- **`ssic`** — industry filter by SSIC **code** (e.g. `62010`) or **keyword** (e.g. `software`) — great for building industry lead lists
- **`maxItems`** — cap the export (full registry is ~1.5M entities)

### Example input

```json
{ "query": "", "status": "Live", "ssic": "software", "maxItems": 5000 }
```

### Output

```json
{
  "uen": "199302785E",
  "entityName": "WINSOFT PTE LTD",
  "status": "Live",
  "entityType": "Local Company",
  "registrationDate": "1993-05-05",
  "primarySsicCode": "46511",
  "primarySsicDescription": "RETAIL & WHOLESALE OF COMPUTER SOFTWARE & HARDWARE",
  "formattedAddress": "83 SCIENCE PARK DRIVE, #03-04, THE CURIE, Singapore 118258",
  "numberOfOfficers": 10,
  "auditFirms": [{ "uen": "...", "name": "..." }],
  "sourceUrl": "https://data.gov.sg/collections/2/view",
  "collectedAt": "2026-07-30T12:00:00.000Z"
}
```

### Notes

Data is © ACRA, published under the **Singapore Open Data Licence** (commercial reuse permitted). Use responsibly and in line with the licence terms.

# Actor input Schema

## `query` (type: `string`):

Full-text search across the registry (company name, keyword, UEN). Leave empty to export by filters or the whole registry.

## `status` (type: `string`):

Exact status filter, e.g. Live, Cancelled, Struck Off, In Liquidation. Leave empty for all.

## `entityType` (type: `string`):

Exact entity-type filter, e.g. "Local Company", "Sole Proprietorship/ Partnership". Leave empty for all.

## `ssic` (type: `string`):

Filter by SSIC industry — a code (e.g. 62010) or a word in the industry description (e.g. software). Matched against primary and secondary SSIC.

## `maxItems` (type: `integer`):

Maximum companies to return. The full registry is ~1.5M entities across 27 datasets.

## Actor input object example

```json
{
  "maxItems": 1000
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "",
    "status": "",
    "entityType": "",
    "ssic": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/acra-company-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "",
    "status": "",
    "entityType": "",
    "ssic": "",
}

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/acra-company-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "",
  "status": "",
  "entityType": "",
  "ssic": ""
}' |
apify call hipersoft/acra-company-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hipersoft/acra-company-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/eyxgfIl0JlQcydA8o/builds/VgQoiqV4GWeL14Rgr/openapi.json
