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
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | Yes | Company 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
logoUrlmay benullif the company has no logolocationmay benullif 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
| Status | When |
|---|---|
| 400 | q parameter is missing or empty |
| 429 | Rate limit exceeded |