GET
/
v0
/
search
/
lookup
JavaScript
import Openregister from 'openregister';

const client = new Openregister({
  apiKey: process.env['OPENREGISTER_API_KEY'], // This is the default and can be omitted
});

const response = await client.search.lookupCompanyByURL({ url: 'https://example.com' });

console.log(response.company_id);
{
  "company_id": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "vat_id": "<string>"
}

Find company by website URL

Find a company using its website URL. The response includes a company ID that you can use with other endpoints to get details like financials, shareholders, and representatives.

Authorizations

Authorization
string
header
required

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

Query Parameters

url
string
required

Website URL to search for. Example: "https://openregister.de"

Response

200
application/json

Successfully retrieved company data

The response is of type object.