JavaScript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); const companySearch = await client.search.findCompaniesV1(); console.log(companySearch.pagination);
{ "results": [ { "company_id": "<string>", "name": "<string>", "country": "<string>", "register_number": "<string>", "register_type": "HRB", "register_court": "<string>", "active": true, "legal_form": "ag" } ], "pagination": { "page": 123, "per_page": 123, "total_pages": 123, "total_results": 123 } }
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Search query to filter companies.
Show child attributes
Filters to filter companies.
status
legal_form
register_number
register_court
register_type
city
active
incorporated_at
zip
address
balance_sheet_total
revenue
cash
employees
equity
real_estate
materials
pension_provisions
salaries
taxes
liabilities
capital_reserves
net_income
industry_codes
capital_amount
capital_currency
number_of_owners
has_sole_owner
has_representative_owner
is_family_owned
youngest_owner_age
Location to filter companies.
Longitude to filter on.
Latitude to filter on.
Radius in kilometers to filter on. Example: 10
Pagination parameters.
Page number to return.
Number of results per page.
Successful search operation
List of companies matching the search criteria.
Unique company identifier. Example: DE-HRB-F1103-267645
Official registered company name. Example: "Max Mustermann GmbH"
Country where the company is registered using ISO 3166-1 alpha-2 code. Example: "DE" for Germany
Registration number in the company register. Example: "230633"
Type of company register. Example: "HRB" for Commercial Register B
HRB
HRA
PR
GnR
VR
Court where the company is registered. Example: "Berlin (Charlottenburg)"
Company status - true if active, false if inactive.
Legal form of the company. Example: "gmbh" for Gesellschaft mit beschränkter Haftung
ag
eg
ek
ev
ewiv
foreign
gbr
ggmbh
gmbh
kg
kgaa
unknown
llp
municipal
ohg
se
ug
Current page number.
Total number of pages.
Total number of results.