Company to Domain API

Convert a company name to its website domain, returned with industry, location, and other profile data in clean JSON.

Endpoint: https://api.enrichmentapi.io/company_to_domain

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • company Required
    The company name to search for.

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/company_to_domain" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "company=Apple"
API Response
{
  "company_name": "Acme Corporation",
  "domain": "acmecorp.com",
  "confidence": 0.97,
  "website": "https://www.acmecorp.com",
  "industry": "Software",
  "location": "San Francisco, CA, USA",
  "alternatives": [
    "acme.com",
    "acme-corp.com"
  ]
}