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.
Location to filter companies.
Pagination parameters.
Successful search operation
List of companies matching the search criteria.
Was this page helpful?