Documentation

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

ParameterTypeRequiredDescription
qstringYesDomain 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

  • logoUrl may be null if the company has no logo
  • location may be null if the company has no location data
  • Results include subdomain matches (e.g. microsoft matches news.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

StatusWhen
400q parameter is missing or empty
429Rate limit exceeded
500Internal server error

Try it

Visit the Logo API interactive demo to test the API live in your browser.