Documentation

Autocomplete API

Search for companies by name and retrieve domain, industry, employee count, logo URL, and location details.

Endpoint

GET /api/v3/company/search?q={query}
text

Parameters

ParameterTypeRequiredDescription
qstringYesCompany name or partial name to search for

Response

Returns an array of up to 10 companies sorted by employee count (descending).

[
  {
    "companyName": "Stripe",
    "logoUrl": "https://assets.enrichlayer.com/pp/profilepic/84bd39cc2914d1e0d12f781dba4b888f",
    "domain": "stripe.com",
    "industry": "Technology, Information and Internet",
    "employeeCount": 14492,
    "location": {
      "city": "South San Francisco",
      "state": "California",
      "country": "US"
    },
    "linkedinUrl": "https://www.linkedin.com/company/stripe"
  }
]
json

Notes

  • logoUrl may be null if the company has no logo
  • location may be null if the company has no location data
  • Results match the start of the company name (prefix) and are case-insensitive

Example

curl "https://enrichlayer.com/api/v3/company/search?q=netflix" \
  -H "Authorization: Bearer YOUR_API_KEY"
bash

Errors

StatusWhen
400q parameter is missing or empty
429Rate limit exceeded