UAE ADGM Public Register Scraper - Company Data avatar

UAE ADGM Public Register Scraper - Company Data

Pricing

from $7.00 / 1,000 entity records

Go to Apify Store
UAE ADGM Public Register Scraper - Company Data

UAE ADGM Public Register Scraper - Company Data

Scrape the Abu Dhabi Global Market (ADGM) public register: company name, registration number, status, type, classification, incorporation date, address and trade names. Search by name, identifier or trade name. No API key.

Pricing

from $7.00 / 1,000 entity records

Rating

0.0

(0)

Developer

getregdata

getregdata

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

5 days ago

Last modified

Share

UAE ADGM Public Register Scraper - Abu Dhabi Company Data

Extract official company data from the Abu Dhabi Global Market (ADGM) public register - the corporate registry of Abu Dhabi's international financial free zone - by entity name, registration number, or trade name, as structured JSON. Each record gives status, entity type, classification, incorporation date, registered address, and trade names. There is no official public API for the ADGM register - this actor is the API.

No login, no API key, nothing to configure - a search term in, structured JSON out.

ADGM is one of the Gulf's major financial free zones, home to thousands of funds, SPVs, and holding companies. Its register has no API and no bulk export, which makes it a hard-to-reach but high-value source for KYC / KYB, due diligence, and market research on Abu Dhabi entities.

What data do you get?

One record per entity:

{
"name": "247 CAPITAL HOLDINGS LIMITED",
"registrationNumber": "000009292",
"status": "Registered",
"entityType": "Private Company Limited By Shares",
"entitySubType": "Special Purpose Vehicle",
"category": "Non-Financial (Category B)",
"incorporationDate": "2023-02-08",
"isContinued": false,
"registeredAddress": "Level 15, Al Khatem Tower, Abu Dhabi Global Market Square, Al Maryah Island, Abu Dhabi, United Arab Emirates",
"tradeNames": [{ "name": "247 CAPITAL HOLDINGS LIMITED", "status": "Active" }],
"jurisdiction": "ADGM (Abu Dhabi Global Market)",
"source": "ADGM Public Register (newreg.adgm.com)",
"sourceUrl": "https://newreg.adgm.com/s/search-results",
"searchQuery": "000009292",
"scrapedAt": "2026-06-28T00:00:00.000Z"
}

How much does it cost?

Pay per result - you are not charged for Apify platform usage, only per entity record. See the Pricing tab on this page for the current figure. The free Apify plan returns a small preview. No subscription, no minimum.

Data comes from the official ADGM public register at newreg.adgm.com, the statutory register of the Abu Dhabi Global Market. This actor reads the open public-search interface only - it does not bypass any login, and it does not access the restricted UBO/beneficial-ownership register. Register disclosure is statutory under ADGM regulations; the public register exposes entity-level data, not personal data of individuals. Use the data lawfully for KYC/AML, due-diligence, and research purposes.

How do I use it?

Click Try it and search by name (returns all matching entities):

{ "searchQueries": ["Capital"], "maxResultsPerQuery": 50 }

Search is a broad "contains" match; for an exact single-entity lookup, use the registration number ({ "searchQueries": ["000009292", "22435"] }).

Input options

FieldTypeDescription
searchQueriesarrayEntity names, registration numbers, or trade names. Each query returns all matches (paginated).
maxResultsPerQueryintegerCap per query (0 = no limit). Default 100.
pageSizeintegerResults per request, 1-100. Default 50.

What you can do with it

  • KYC / KYB onboarding - verify an ADGM entity's existence, status, and type from a name or registration number.
  • Due diligence - check status (Registered / Expired), classification, and incorporation date.
  • Fund & SPV research - map ADGM-registered funds, SPVs, and holding companies.
  • Market intelligence - track entity types and categories across the free zone.

Run it from code

# cURL - start a run and get the dataset back
curl -X POST "https://api.apify.com/v2/acts/regdata~uae-adgm-public-register-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "searchQueries": ["000009292"] }'
// Node.js - apify-client
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('regdata/uae-adgm-public-register-scraper').call({ searchQueries: ['000009292'] });
const { items } = await client.dataset(run.defaultDatasetId).listItems();
# Python - apify-client
from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("regdata/uae-adgm-public-register-scraper").call(run_input={"searchQueries": ["000009292"]})
items = client.dataset(run["defaultDatasetId"]).list_items().items

Integrations

Runs anywhere Apify does: call it from the REST API, schedule recurring checks, pipe results into n8n / Make / Zapier, or use it from any MCP client (Claude, Cursor) via mcp.apify.com.

FAQ

Is it legal? Yes. The ADGM public register is statutory and open; this actor reads the public search only and does not touch the restricted UBO register. It exposes entity-level data, not individuals' personal data. Use it lawfully for KYC/AML and due-diligence purposes.

Do I need an account or API key? No. No login, no key, nothing to configure - just an Apify account.

Does it return directors or beneficial owners? No. Directors/officers and the UBO register are not part of the public ADGM register; this actor returns entity-level data (name, status, type, classification, dates, address, trade names).

How do I look up one exact entity? Use the registration number (typically 6 digits for companies, or a prefixed permit like TL-…) as the search query.

What export formats are supported? JSON, CSV, Excel, or XML, or read live via the API.

Part of a suite of official government registry actors - no public API, pay per result, no keys to supply.

CountryActors
PolandREGON/GUS · KRS financials · KRS board · CRBR UBO · KRZ debtors · MSiG gazette · KNF · PEP · EKW land · UOKiK · BDO waste · Premises
GermanyHandelsregister · Insolvency
SpainCompany directory · BORME acts · Concursal
ItalyRegistro Imprese · PEC lookup
AustriaWKO directory · Ediktsdatei
FranceSociete.com
BelgiumKBO/BCE
CzechiaISIR insolvency
SlovakiaRPVS UBO
UAEADGM register (this actor)
USACalifornia SoS · California UCC liens
GlobalAdverse media

Common combination: ADGM register (this actor) for entity identity -> adverse media for a KYB flow.

Full suite: apify.com/regdata · Callable from any MCP client via mcp.apify.com