Websites Logo Finder avatar

Websites Logo Finder

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Websites Logo Finder

Websites Logo Finder

Given a domain or URL, normalizes it into a clean domain and returns a hosted company logo URL for that domain.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Codex

Codex

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

11 days ago

Last modified

Categories

Share

Websites Logo Finder turns any messy URL or domain into a clean, ready-to-use company logo link. Paste in something like https://www.apify.com/some/page and get back the normalized domain (apify.com) plus a hosted logo URL you can drop straight into a UI, email template, or CRM record. Try it now with the free demo run or via the API — no scraping, no browser, just fast, deterministic normalization.

Running it on the Apify platform means you get instant REST API access, scheduling for batch enrichment jobs, and integrations with Make, Zapier, and Google Sheets, so logo lookups can slot straight into an existing data pipeline.

Why use Websites Logo Finder?

  • Data enrichment — attach a company logo to leads, contacts, or accounts stored with only a website URL or email domain.
  • UI polish — show real company branding in dashboards, comparison tables, or directories without hosting logo files yourself.
  • Consistent normalization — strips protocols, www., ports, paths, and credentials so the same company always maps to the same domain and logo URL, regardless of how the input was formatted.

How to use Websites Logo Finder

  1. Open the Actor's Input tab in Apify Console.
  2. Enter a domain or full URL in the domain field (e.g. apify.com, https://www.apify.com/page). Leave it blank to use the default, apify.com.
  3. Click Start.
  4. Once the run finishes, open the Output tab (or the dataset via API) to get the normalized domain and logo URL.

Input

The Actor accepts a single optional field, defined in the input schema:

FieldTypeDescriptionDefault
domainStringA domain name or URL to look up a logo for.apify.com

Example input:

{
"domain": "https://www.apify.com/page"
}

Output

Each run pushes a single item to the default dataset with the normalized domain and its logo URL:

{
"domain": "apify.com",
"logo": "https://logo.clearbit.com/apify.com"
}

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel from the Output tab or via the Apify API.

Data table

FieldDescription
domainThe cleaned, lowercase domain extracted from the input (protocol, www., port, path, and credentials removed).
logoA hosted logo URL for the domain, or "Error" if no domain could be extracted.

Cost estimation

This Actor does no scraping or browser rendering — it only parses the input string and constructs a URL — so a single run finishes in well under a second and consumes a negligible fraction of a compute unit. Even large batch jobs are inexpensive compared to typical scraping Actors, and the free tier easily covers casual or exploratory use.

Standby mode: real-time HTTP API

Besides normal batch runs, this Actor also runs in Actor Standby mode, so it stays warm in the background and answers requests instantly without a cold start. Send a GET request with a domain query parameter to the Actor's Standby URL:

GET https://<standby-actor-url>/?domain=https://www.apify.com/page
{
"domain": "apify.com",
"logo": "https://logo.clearbit.com/apify.com"
}

Omitting domain falls back to apify.com, same as a batch run. See the Standby tab in Apify Console for this Actor's live URL.

Tips

  • To enrich many companies at once, run the Actor via the API in a loop, or schedule it as part of a larger data pipeline using Apify integrations. For real-time, one-off lookups, prefer the Standby HTTP API above to avoid run start-up overhead.
  • x.com is automatically mapped to twitter.com for logo lookup purposes, since the logo database indexes the historical domain.

FAQ, disclaimers, and support

This Actor depends on a free, public third-party logo-lookup service. Its availability and terms are controlled by that provider, not Apify. If a domain has no matching logo, the returned image URL may 404 — validate on your end if that matters for your use case.

Found a bug or want a feature added? Open an issue on the Actor's Issues tab in Apify Console, or reach out about a custom solution.