Skip to main content
GET
/
v1
/
autocomplete
/
company
JavaScript
import Openregister from 'openregister';

const client = new Openregister({
  apiKey: 'My API Key',
});

const response = await client.search.autocompleteCompaniesV1({ query: 'query' });

console.log(response.results);
{
  "results": [
    {
      "company_id": "<string>",
      "name": "<string>",
      "country": "<string>",
      "register_number": "<string>",
      "register_type": "HRB",
      "register_court": "<string>",
      "active": true,
      "legal_form": "ag"
    }
  ]
}

Autocomplete company

Fast, lightweight search for companies by name. This endpoint is optimized for autocomplete functionality in user interfaces, returning quick results as users type. It searches both current and historical company names, making it perfect for implementing search-as-you-type features. Returns basic company information including ID, name, and register details. Cost: 1 credit per request

Authorizations

Authorization
string
header
required

API Key Authentication Provide your API key as a Bearer token in the Authorization header.

Query Parameters

query
string
required

Text search query to find companies by name. Example: "Descartes Technologies UG"

Response

Successful search operation

results
object[]
required

List of companies matching the search criteria.