Discover/CompanyData API
live

CompanyData APIcompanydata.com

Search the CompanyData.com registry by name, city, SIC code, revenue, and legal type. Get contact details, industry, and top-company tables for UAE, UK, and more.

Endpoint health
verified 3h ago
search_companies
get_country_top_companies
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the CompanyData API?

The CompanyData.com API exposes 2 endpoints that cover the site's global company registry, returning up to 100 company records per call with fields including registration numbers, SIC industry codes, revenue brackets, founding year, and contact details. The search_companies endpoint lets you filter by city, free-text name, SIC code, revenue range, and legal type, while get_country_top_companies returns the 25 highest-revenue companies alongside registry-wide statistics for a given country.

This call costs2 credits / call— charged only on success
Try it
City name filter, matched by the site case-insensitively (e.g. SHARJAH). Omitted = all cities.
Free-text search over company names (e.g. bank). Omitted = no name filter.
Sort order of the results. Omitted = the site's default ordering.
4-digit SIC industry code, leading zeros preserved (e.g. 6021 for Banking). Omitted = all industries.
Number of companies to return from the first page; values above 100 are clamped to 100, below 1 to 1.
Business legal form code from the site's legal-type filter; the value is forwarded to the site unchanged. Omitted = all legal types.
Maximum yearly revenue in US dollars. Omitted = no upper bound.
Minimum yearly revenue in US dollars. Omitted = no lower bound.
2-letter ISO country code of the registry to search (e.g. AE for the United Arab Emirates, NL for the Netherlands).
Maximum total employees. Omitted = no upper bound.
Minimum total employees. Omitted = no lower bound.
Exact founding year (4 digits). Omitted = all years.
api.parse.bot/scraper/d4ce4b15-2dc8-48e0-9237-640af3f9c8f6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d4ce4b15-2dc8-48e0-9237-640af3f9c8f6/search_companies?country_code=AE' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace companydata-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: CompanyData.com API — search companies and read country reports."""
from parse_apis.companydata_com_api import CompanyData, OrderBy, LegalType, CountryNotFound

client = CompanyData()

# Search for banking corporations in the UAE, sorted by revenue.
listing = client.companies.search(
    country_code="AE",
    query="bank",
    legal_type=LegalType.CORPORATION,
    order_by=OrderBy.REVENUE_DESC,
    page_size=5,
)
print(f"Found {listing.total_count} matches across {listing.total_pages} pages")
for company in listing.companies:
    print(company.name, company.city, company.industry)

# Drill into a country report for aggregate statistics.
report = client.country_reports.get(country_slug="uae")
print(f"{report.page_title}: {report.total_count} companies")
print(f"Top legal status: {report.top_legal_status.name} ({report.top_legal_status.count})")
print(f"Fields with phone data: {report.field_coverage_counts.phone}")

# Revenue bracket breakdown.
for bracket, count in report.companies_by_revenue_bracket_usd.items():
    print(f"  {bracket}: {count}")

# Top-revenue companies from the report.
for company in report.companies[:3]:
    print(company.name, company.employees_total, company.yearly_revenue_usd)

# Handle an unknown country gracefully.
try:
    client.country_reports.get(country_slug="xyznotacountry")
except CountryNotFound:
    print("Country slug not recognised")

print("exercised: companies.search / country_reports.get / CountryNotFound")
All endpoints · 2 totalmissing one? ·

Searches the CompanyData.com company registry for one country and returns the first page of matching companies (the site only lets unregistered visitors view page 1, so no further pages are available; page_size controls how many of the top results are returned, up to 100). Filters narrow by name text, city, 4-digit SIC industry code, legal form, founding year, employee-count range and yearly-revenue range; order_by sorts by revenue or headcount. Each company row carries id, name, SIC code and industry description, city, state/province, country, founding year, registration number, legal type and group headquarters fields. Contact fields (phone, mobile, address lines, email, website) are partially masked by the site for unregistered visitors (e.g. one shape is '+9*****23'); employees_total, yearly_revenue_usd and legal_type_code are always null on this endpoint (use get_country_top_companies for those). total_count is the site's full match count across all pages. A filter set with no matches returns an empty companies list with total_count 0.

Input
ParamTypeDescription
citystringCity name filter, matched by the site case-insensitively (e.g. SHARJAH). Omitted = all cities.
querystringFree-text search over company names (e.g. bank). Omitted = no name filter.
order_bystringSort order of the results. Omitted = the site's default ordering.
sic_codestring4-digit SIC industry code, leading zeros preserved (e.g. 6021 for Banking). Omitted = all industries.
page_sizeintegerNumber of companies to return from the first page; values above 100 are clamped to 100, below 1 to 1.
legal_typestringBusiness legal form code from the site's legal-type filter; the value is forwarded to the site unchanged. Omitted = all legal types.
revenue_maxintegerMaximum yearly revenue in US dollars. Omitted = no upper bound.
revenue_minintegerMinimum yearly revenue in US dollars. Omitted = no lower bound.
country_codestring2-letter ISO country code of the registry to search (e.g. AE for the United Arab Emirates, NL for the Netherlands).
employees_maxintegerMaximum total employees. Omitted = no upper bound.
employees_minintegerMinimum total employees. Omitted = no lower bound.
founding_yearintegerExact founding year (4 digits). Omitted = all years.
Response
{
  "type": "object",
  "fields": {
    "companies": "array of company records: id, name, trade_name, email, phone, mobile, website, sic_code, industry, address_1, address_2, postal_code, city, state_province, country, founding_year, registration_number, legal_type, legal_type_code, employees_total, yearly_revenue_usd, group_company_count, hq_city, hq_country",
    "page_size": "integer, page size the site applied",
    "total_count": "integer, total companies matching the filters across the whole registry",
    "total_pages": "integer, number of pages the site reports at this page_size (only page 1 is retrievable)",
    "country_code": "upper-cased 2-letter country code that was searched"
  },
  "sample": {
    "data": {
      "companies": [
        {
          "id": "0668669462",
          "city": "Abu Dhabi",
          "name": "Al Maryah Community Bank L.L.C.",
          "email": null,
          "phone": "+9*****22",
          "mobile": "",
          "country": "United Arab Emirates",
          "hq_city": "Abu Dhabi",
          "website": null,
          "industry": "National Commercial Banks",
          "sic_code": "6021",
          "address_1": "454*****",
          "address_2": null,
          "hq_country": "United Arab Emirates",
          "legal_type": "Corporation",
          "trade_name": null,
          "postal_code": null,
          "founding_year": 2021,
          "state_province": "Abu Dhabi",
          "employees_total": null,
          "legal_type_code": null,
          "yearly_revenue_usd": null,
          "group_company_count": 4,
          "registration_number": "CN-4028026"
        }
      ],
      "page_size": 5,
      "total_count": 68,
      "total_pages": 14,
      "country_code": "AE"
    },
    "status": "success"
  }
}

About the CompanyData API

search_companies

The search_companies endpoint queries the CompanyData.com registry for a single country and returns the first page of matching results. You can narrow results with any combination of query (name substring), city, sic_code (4-digit, leading zeros preserved — e.g. 0621 or 6021), legal_type, revenue_min, and revenue_max (both in USD). The page_size parameter controls how many records come back, up to a maximum of 100. Each company record in the response includes id, name, trade_name, email, phone, mobile, website, sic_code, industry, address fields, postal_code, founding_year, legal_type, registration_number, employees, and yearly_revenue_usd. The response also surfaces total_count and total_pages so you know the scope of your query, though only page 1 is retrievable.

get_country_top_companies

The get_country_top_companies endpoint returns the fixed table of 25 top-revenue companies that CompanyData.com publishes on each country list page, identified by a lowercase country_slug (confirmed values include uae and uk). The company records share the same field shape as those from search_companies. Beyond the company list, the response includes registry-level statistics: total_count, companies_by_city (a map of city name to company count), companies_by_employee_bracket, companies_by_revenue_bracket_usd, field_coverage_counts (counts of companies with CEO, email, phone, address, and website data), and top_legal_status (the most common legal form and how many companies hold it).

Data coverage and limitations

Both endpoints reflect what CompanyData.com makes available without authentication. The search_companies endpoint is limited to page 1 of results — the site restricts deeper pagination to registered users, so total_pages indicates how many pages exist but only the first is returned. The country_slug values for get_country_top_companies are not enumerated in the API; only uae and uk are confirmed to work, and unknown slugs return an error.

Reliability & maintenanceVerified

The CompanyData API is a managed, monitored endpoint for companydata.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when companydata.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official companydata.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a prospect list of UAE companies filtered by SIC code and minimum yearly revenue.
  • Identify the 25 largest companies by revenue in a target country for competitive benchmarking.
  • Enrich a CRM by looking up phone, email, and website for companies matched by name and city.
  • Analyze industry concentration in a city by aggregating companies_by_city and sic_code data.
  • Map employee-size distribution across a country's registered companies using companies_by_employee_bracket.
  • Cross-reference registration numbers and legal types for due-diligence screening on known company names.
  • Track field coverage gaps (email, phone, website) across a country's registry for data-quality audits.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CompanyData.com have an official developer API?+
CompanyData.com does not publish a documented public developer API. The data is available through the Parse API described here.
What pagination is available in search_companies?+
Only the first page of results is returned, regardless of total_pages. The response includes total_count and total_pages so you can see how large the full result set is, but the CompanyData.com site restricts deeper pagination to registered users, so no further pages are accessible through this API.
Which countries are supported by get_country_top_companies?+
uae and uk are confirmed to work as country_slug values. Other country slugs may work if they match CompanyData.com's URL structure, but they are not enumerated in the API and an unknown slug returns an error rather than an empty result.
Does the API support retrieving individual company detail pages or director/officer information?+
Not currently. The API covers company list search via search_companies and country-level top-company tables via get_country_top_companies. Individual company profiles and officer or director records are not exposed. You can fork this API on Parse and revise it to add an endpoint that fetches a single company's detail page using its id.
Can I filter search_companies by multiple SIC codes or multiple cities in one call?+
No. Each call accepts a single sic_code string and a single city string. Multi-value filtering is not currently supported. The API covers one filter value per field per request. You can fork it on Parse and revise to add multi-value filter logic across parallel requests.
Page content last updated . Spec covers 2 endpoints from companydata.com.
Related APIs in B2b DirectorySee all →
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
developer.company-information.service.gov.uk API
Search for UK registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.
dnb.com API
Search millions of companies in Dun & Bradstreet's global business directory to find detailed company profiles and verify D-U-N-S numbers. Look up key business information like company details and identifiers to support due diligence, sales prospecting, and business intelligence needs.
dunsnumberlookup.dnb.com API
Search for detailed company information using Dun & Bradstreet's database by entering a company name or registration number along with a country code. Get back comprehensive business data including operating status, address, location type, and registration details to verify company credentials and find key business information.
companyweb.be API
Search for Belgian companies and instantly access their key details like founding year, business activities, and employee count. Get comprehensive company profiles directly from Belgium's official business database.
indiafilings.com API
Access data from indiafilings.com.
bcorporation.net API
Access data from bcorporation.net.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.