Logo API
Search for companies by domain and retrieve high-quality logos, industry data, and location details.
Logo API
Search for companies by domain name. Returns company details including high-resolution logo URLs, industry, employee count, and location.
Endpoint
GET /api/v3/company/logo?q={query}text
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | Yes | Domain name or partial domain 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/...",
"domain": "stripe.com",
"industry": "Financial Technology",
"employeeCount": 8200,
"location": {
"city": "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 include subdomain matches (e.g.
microsoftmatchesnews.microsoft.com) - Search is case-insensitive
Example
curl "https://enrichlayer.com/api/v3/company/logo?q=stripe.com" \
-H "Authorization: Bearer YOUR_API_KEY"bash
Errors
| Status | When |
|---|---|
| 400 | q parameter is missing or empty |
| 429 | Rate limit exceeded |
| 500 | Internal server error |
Try it
Visit the Logo API interactive demo to test the API live in your browser.