Company Name 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": "Apple Inc.",
  "domain": "apple.com",
  "confidence": 0.98,
  "website": "https://www.apple.com",
  "industry": "Consumer Electronics",
  "location": "Cupertino, CA, USA",
  "alternatives": [
    "apple.co",
    "apple-inc.com"
  ]
}