Skip to main content

Access

The API is available to customers with an active subscription or pay-as-you-go credits. If you don’t have either, the API section won’t be accessible.

API Key

Your API key is in the Enrow Dashboard — click API in the left menu and copy your key.
Keep your API key secure. Never commit it to version control or share it publicly.

Webhook Configuration

You can configure a default webhook URL in the dashboard. This URL will be used when no webhook is specified in individual requests. See How Webhooks Work for more details.

Country Code

You can pass a country_code parameter (ISO 3166-1 alpha-2) in the settings object of your requests. If nothing is provided, the default is US.
The country code is only useful when searching with company_name (not company_domain). It tells Enrow which local version of Google to use for resolving the company — for example, google.de for Germany or google.fr for France.
This is particularly useful for homonyms — companies that share the same name in different countries:
// Dove the soap brand (UK)
{
  "company_name": "Dove",
  "first_name": "John",
  "last_name": "Doe",
  "settings": { "country_code": "GB" }
}

// Dove the chocolate brand (Germany)
{
  "company_name": "Dove",
  "first_name": "Hans",
  "last_name": "Müller",
  "settings": { "country_code": "DE" }
}