Skip to main content
GET
/
v0
/
company
/
{company_id}
/
contact
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.company.getContactV0('company_id');

console.log(response.vat_id);
{
  "source_url": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "vat_id": "<string>"
}
Deprecated: This endpoint is deprecated. Contact information is now included in the company details endpoint response. Use that endpoint instead to get company data including contact information in a single request.

Get company contact information

Retrieve contact information for a company including email addresses, phone numbers, and VAT identification numbers. This data is collected from publicly available sources including company websites. The response includes the source URL where each piece of information was found, allowing you to verify the data origin. Cost: 10 credits

Authorizations

Authorization
string
header
required

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

Path Parameters

company_id
string
required

Unique company identifier. Example: DE-HRB-F1103-267645

Response

Successfully retrieved contact information

source_url
string<uri>
required

Where the contact information was found. Example: "https://openregister.de"

email
string

Company contact email address. Example: "founders@openregister.de"

phone
string

Company phone number. Example: "+49 030 12345678"

vat_id
string

Value Added Tax identification number. (Umsatzsteuer-Identifikationsnummer) Example: "DE370146530"