Javascript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); 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>" }
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Website URL to search for. Example: "https://openregister.de"
Successfully retrieved company data
The response is of type object.
object