Skip to content

Search endpoint

Find a company’s domain when you only know its name.

GET https://api.anylogo.dev/search?q={name}

Returns up to 8 suggestions matching the query (minimum 2 characters), ordered by best match:

{
"suggestions": [
{
"name": "Spotify",
"domain": "spotify.com",
"logo": "https://img.anylogo.dev/spotify.com"
}
]
}

Each suggestion carries the company name, its domain (usable with the company endpoint), and a ready-to-use logo URL.

  • Matches on company name prefixes and domain prefixes.
  • CORS-enabled — call it directly from browser code (debounce your requests; responses are cached for 5 minutes).
  • The index grows continuously as domains are looked up through the API, so coverage improves over time. An unknown company simply returns an empty list — you can always fall back to querying the domain directly.
const res = await fetch('https://api.anylogo.dev/search?q=spot');
const { suggestions } = await res.json();
// suggestions[0].domain === 'spotify.com'