New Jersey Business Search Scraper
Pricing
Pay per event
New Jersey Business Search Scraper
Search and export official New Jersey business registry records by name, keywords, or entity ID for verification, enrichment, and research.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Stas Persiianenko
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
7 days ago
Last modified
Categories
Share
Search the official New Jersey public business registry and export structured business records by legal-name prefix, keywords, or exact entity ID.
This Actor turns the state search forms into an automation-friendly dataset for vendor checks, lead enrichment, due diligence, research, and scheduled comparison workflows.
It returns source-reported business names, entity IDs, cities, entity types, and incorporation dates without requiring a New Jersey account or API key.
What does New Jersey Business Search Scraper do?
The Actor submits searches to the public New Jersey Division of Revenue and Enterprise Services business-name portal.
It supports all three registered-business lookup routes exposed by that source:
- business name prefix;
- one-to-five keyword search;
- exact 10-digit entity ID.
Results from multiple searches are deduplicated by entity ID before they are saved.
The Actor stops at maxItems, so a run has a predictable output ceiling.
It uses a fresh token-bound source session for each search and retries transient failures with bounded backoff.
Who is it for?
Compliance and procurement teams can verify that a supplied New Jersey entity ID resolves to the expected public record.
Sales and research teams can discover businesses whose registered names match a prefix or set of keywords.
Data engineers can send the dataset to spreadsheets, warehouses, CRM enrichment jobs, or internal KYB pipelines.
Analysts can schedule the same input and compare datasets over time.
The output is public registry evidence, not a substitute for legal advice, certified documents, or a complete good-standing report.
Why use this Actor?
- Uses the official public New Jersey registry search pages.
- Supports name, keyword, and exact entity-ID inputs in one run.
- Returns typed JSON instead of an HTML table.
- Deduplicates overlapping searches by stable entity ID.
- Preserves the search mode and term that produced each record.
- Fails on unexpected upstream pages instead of silently returning a false empty result.
- Works with Apify schedules, webhooks, API clients, datasets, and exports.
What New Jersey business data can it extract?
| Field | Meaning |
|---|---|
businessName | Legal business name shown by the registry |
entityId | Ten-digit New Jersey entity identifier |
city | City shown in the public result, or null |
entityTypeCode | Registry abbreviation such as LLC or DP |
entityType | Expanded entity type from the source |
incorporatedDate | Date displayed by the registry |
sourceUrl | Official search page used for the lookup |
searchMode | businessName, keywords, or entityId |
searchTerm | Input value that produced the record |
scrapedAt | UTC extraction timestamp |
The source does not expose status, registered agent, officers, street address, or filing documents in these free search-result tables.
This Actor does not invent or infer those fields.
Getting started
- Open the Actor input page.
- Add at least one value under business names, keyword searches, or entity IDs.
- Set the maximum number of unique records to save.
- Click Start.
- Open the Business records dataset when the run finishes.
- Export results as JSON, CSV, Excel, XML, or another supported Apify format.
A useful first input is:
{"businessNames": ["AUTOMATION"],"maxItems": 25}
New Jersey automatically treats a business-name value as a prefix by adding a wildcard at its end.
Input parameters
businessNames
An array of legal-name prefixes.
Each value must contain 2–100 characters.
Example:
{"businessNames": ["AUTOMATION", "ATLANTIC TECHNOLOGY"]}
keywordSearches
An array of search phrases.
Each phrase may contain one to five space-separated keywords, matching the official NJ keyword form.
Example:
{"keywordSearches": ["AUTOMATION TECHNOLOGY"],"maxItems": 100}
entityIds
An array of exact 10-digit New Jersey entity IDs.
Example:
{"entityIds": ["0100608678"],"maxItems": 1}
maxItems
The maximum number of unique records saved across all searches.
Allowed range: 1–10,000.
Default: 100.
The limit is global, not per search term.
Output example
A current entity-ID lookup produces a record like this:
{"businessName": "AUTOMATION & CONTROL, LLC","entityId": "0100608678","city": "MOORESTOWN","entityTypeCode": "LLC","entityType": "Domestic Limited Liability Company","incorporatedDate": "12/7/1994","sourceUrl": "https://www.njportal.com/DOR/BusinessNameSearch/Search/EntityId","searchMode": "entityId","searchTerm": "0100608678","scrapedAt": "2026-08-05T14:24:56.330Z"}
Values can change when the state updates its public source.
Nullable source fields remain null; they are not replaced with guessed values.
How much does it cost to search New Jersey businesses?
Pricing uses one start event and one business-record event for each unique dataset item.
The start fee is $0.005 per run.
At the BRONZE tier, each saved business record costs $0.002532.
| Saved records | Example charge at BRONZE (USD) |
|---|---|
| 1 | 0.007532 |
| 25 | 0.068300 |
| 100 | 0.258200 |
| 1,000 | 2.537000 |
Examples combine the start fee and per-record price.
Apify applies the active tier for your account, so higher tiers may have lower per-record prices.
No-result searches pay the one-time start fee but produce no item events.
Check the Actor pricing tab for the active tier assigned to your account.
Search names versus keywords
A business-name search matches the beginning of a registered legal name.
Use it when you know the first part of the name or want prefix discovery.
A keyword search sends up to five words through the source's separate keyword route.
Use it when relevant words may not be at the beginning of the legal name.
An entity-ID search is the narrowest option and usually returns zero or one matching record.
Use it for point-in-time verification when you already have the state's identifier.
Deduplication and limits
If multiple input terms return the same entity ID, the first accepted occurrence is saved.
Later duplicates do not create another dataset item and are not charged again.
Input values are processed in this order:
- business names;
- keyword searches;
- entity IDs.
The Actor stops after maxItems unique records.
A very broad source result can therefore consume the limit before later terms are processed.
Run exact entity-ID checks separately when every supplied ID must be evaluated independently.
Scheduled verification and change tracking
Use an Apify schedule to repeat a stable set of entity-ID or name searches.
Send the finished dataset to your storage system with a webhook or integration.
Compare snapshots by entityId and source fields in your downstream workflow.
The Actor does not maintain a hidden cross-run history and does not label records as changed.
That keeps every run self-contained and prevents stale records from appearing in a new dataset.
Export and integration workflows
Common workflows include:
- export a prefix search to CSV for one-time analysis;
- enrich a vendor table with source-reported entity type and city;
- verify known entity IDs during merchant onboarding;
- schedule searches and compare snapshots in a warehouse;
- trigger a webhook after a dataset is ready;
- connect the dataset to Make, Zapier, Google Sheets, or a custom application.
Treat broad name matches as candidates rather than proof that two organizations are the same.
Use the entity ID when you need a stable registry key.
Run with the Apify API using cURL
Replace APIFY_TOKEN with your token:
curl -X POST \"https://api.apify.com/v2/acts/automation-lab~new-jersey-business-registry-search/runs?token=APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"entityIds":["0100608678"],"maxItems":1}'
To wait for the run and receive dataset items:
curl -X POST \"https://api.apify.com/v2/acts/automation-lab~new-jersey-business-registry-search/run-sync-get-dataset-items?token=APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"businessNames":["AUTOMATION"],"maxItems":25}'
Run with JavaScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('automation-lab/new-jersey-business-registry-search').call({keywordSearches: ['AUTOMATION TECHNOLOGY'],maxItems: 100,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Run with Python
import osfrom apify_client import ApifyClientclient = ApifyClient(os.environ['APIFY_TOKEN'])run = client.actor('automation-lab/new-jersey-business-registry-search').call(run_input={'entityIds': ['0100608678'],'maxItems': 1,})items = client.dataset(run['defaultDatasetId']).list_items().itemsprint(items)
Use with Apify MCP
Add this Actor to Claude Code:
claude mcp add --transport http apify \"https://mcp.apify.com?tools=automation-lab/new-jersey-business-registry-search"
Claude Desktop
Add this server URL in Claude Desktop's MCP settings.
Cursor
Add the same server URL under Cursor's MCP tools configuration.
VS Code
Add the server URL to your VS Code MCP configuration.
All three clients can use this JSON shape:
{"mcpServers": {"apify": {"url": "https://mcp.apify.com?tools=automation-lab/new-jersey-business-registry-search"}}}
Example prompts:
- "Look up New Jersey entity ID 0100608678 and summarize the source fields."
- "Search New Jersey registered business names beginning with AUTOMATION and return 25 rows."
- "Export businesses matching the keywords AUTOMATION TECHNOLOGY as JSON."
Reliability and retries
The New Jersey form requires an anti-forgery token and matching cookie session.
The Actor bootstraps that session for every search.
Transient network, session, or unexpected-response failures are retried up to three times with a fresh session and bounded backoff.
A recognized No Results Found table is a successful empty search.
A blocked page, non-200 response, or missing result table is an error.
This distinction prevents an upstream failure from looking like a valid empty dataset.
Limitations
- Results are limited to fields displayed by the free NJ business search.
- The source can change its forms, labels, availability, or rate limits.
- Business-name matching follows the source's prefix behavior.
- Keyword phrases support at most five words.
- The source may return historical entities regardless of current name availability.
- A matching name alone does not prove identity, ownership, status, or good standing.
- The Actor does not download certificates or paid filing documents.
- It does not provide registered agents, officers, street addresses, or inferred contact data.
Responsible use and legality
The Actor accesses public registry search results.
Use the data for lawful purposes and follow applicable privacy, consumer-protection, anti-discrimination, and record-retention rules.
Do not use a name match as the sole basis for a high-impact decision.
Verify important findings through the official source and qualified professional advice where appropriate.
New Jersey remains the authoritative source for its records.
Troubleshooting
Why did my business-name search return many records?
The official source automatically inserts a wildcard at the end of a business-name value.
Use a longer prefix, an exact entity ID, or a smaller maxItems value to narrow the run.
Why did my keyword input fail validation?
Each keyword-search phrase may contain no more than five space-separated words.
Split a longer research request into several supported phrases.
Why did I receive no dataset items?
The source may have returned its explicit No Results Found table.
Check the run log for found: 0.
Try a shorter legal-name prefix or confirm that the entity ID contains exactly 10 digits.
Why did the run fail instead of returning an empty dataset?
The Actor fails when the source returns an unexpected page or repeated network error.
Retry later and inspect the log before treating the result as evidence that no business exists.
Does the Actor return current business status?
No.
The free result table used by this Actor does not expose status.
Do not infer status from the presence of a result or its incorporation date.
FAQ
Is an account or API key required?
No New Jersey account or source API key is required.
You need an Apify account to run the Actor on Apify.
Can I combine input modes?
Yes.
You can provide business names, keyword searches, and entity IDs in one run.
Results are deduplicated by entity ID and share one global maxItems limit.
Are duplicate records charged twice?
No.
Only unique records accepted into the dataset emit the business-record event.
Can I search all New Jersey businesses?
The Actor is a query-driven search tool, not a bulk registry dump.
Use realistic prefixes or keywords and respect the source's public interface.
How fresh is the data?
Records are extracted from the live public search when the run executes.
The Actor cannot guarantee when New Jersey last updated an underlying record.
Can I use the dataset in Excel?
Yes.
Open the run dataset and export it as Excel or CSV.
Does a successful match certify good standing?
No.
A search result is public registry evidence only and is not a certified status document.
Related automation
This Actor is intentionally focused on the New Jersey public registered-business search.
Use Apify schedules, webhooks, dataset exports, and integrations to build enrichment or snapshot-comparison workflows around its output.
No broader Automation Lab registry Actor currently provides the same source-specific fields, so unrelated third-party Actors are not presented as related products here.