The Clearbit Logo API was permanently shut down on December 8, 2025, so the fastest Clearbit Logo API alternative is a drop-in replacement you can swap in by changing the host in your image URL: logo.dev for simple domain lookups, Brandfetch for SVG quality, or Quikturn if you need ticker-symbol search and a 1M-request free tier. This guide shows you what broke, how to choose, and exactly how to migrate.
If you woke up to broken logo images and a logo.clearbit.com host that no longer resolves, you are not alone. Thousands of CRMs, dashboards, and trading apps leaned on that endpoint for years, partly because it was free and partly because it just worked. Now it returns nothing.
The good news: this is a clean fix. Every serious replacement uses a near-identical URL pattern, so most migrations are a one-line change plus an API key. Below, we compare the leading options on the things that actually matter, then walk through the migration step by step.
Key Takeaways
- • The Clearbit Logo API was permanently retired on December 8, 2025 after HubSpot’s acquisition; requests to
logo.clearbit.comno longer return logos. - • The top replacements are logo.dev (the official drop-in, 500K free requests/month), Brandfetch (free Logo API, best-in-class SVGs), LogoKit (50M+ logos including stocks and crypto), and Quikturn (17M+ logos with ticker and LinkedIn URL search, 1M free requests/month).
- • Most migrations are a host swap plus an API key, so you can be back online in under 30 minutes.
- • If your product is finance- or fintech-facing, prioritize ticker-symbol lookup and a generous free tier; if you need fonts and rich brand metadata, look at a brand-data platform instead.
What Happened to the Clearbit Logo API
The Clearbit Logo API is gone. After HubSpot acquired Clearbit, the free logo endpoint was deprecated and then permanently sunset on December 8, 2025, as documented in
HubSpot’s own changelog.
Calls to logo.clearbit.com/{domain} now fail to connect, which is why logos vanished across apps that depended on it.
For years, that single URL was the default way to show a company logo. You passed a domain, you got back a PNG. No key, no billing, no rate-limit math. That convenience is exactly why its removal hurt so many teams at once.
Consider Maya, a solo founder running a B2B prospecting tool. Her app enriched every account row with a logo via Clearbit. On December 9, 2025, her dashboard filled with broken-image icons, and three customers emailed within the hour asking if the product was down. The actual fix took her 20 minutes. The scramble to find it, under live customer pressure, took most of her morning. This guide exists so your version of that morning is calmer.
How to Choose a Clearbit Logo API Alternative
Pick your replacement on five criteria, in roughly this order of importance for most teams:
- • Coverage: How many companies, and do they include private firms, international businesses, and the long tail you actually query?
- • Search methods: Domain only, or also company name, stock ticker, ISIN, and other identifiers your data already uses?
- • Formats and quality: PNG for speed, SVG for crisp rendering on retina and 4K screens, plus transparent backgrounds.
- • Free tier and pricing: How many requests are free, and does pricing scale predictably as you grow?
- • Migration effort: Is it a true drop-in host swap, or a larger rewrite?
One more split decides a lot: do you need a logo CDN or a brand-data platform? A logo CDN serves images fast with minimal overhead, which is all most Clearbit users ever wanted. A brand-data platform returns logos plus colors, fonts, and metadata, which matters if you are theming a UI around each company’s identity. Choosing the wrong category means you either overpay for data you ignore or outgrow a service that only returns an image.
Want to skip the comparison? If you build for finance or fintech, Quikturn’s logo API covers domain, name, and ticker-symbol lookups on a 1M-request free tier. Get an API key free and test the swap in minutes.
The Best Clearbit Logo API Alternatives in 2026
Here are the four replacements worth your shortlist, with the honest trade-offs for each. There is no single winner; the right pick depends on your stack and your users.
logo.dev: The Official Drop-In Replacement
logo.dev
is the closest thing to an official successor. It covers 30M+ companies, and the migration is a host swap: change logo.clearbit.com/{domain} to img.logo.dev/{domain} and add a token. Its free tier is now 500K requests per month, with dark-mode and theme variants.
Best for: Teams that only need a logo next to a domain in a list and want the smallest possible change.
Brandfetch: Best for Visual Quality
Brandfetch delivers full SVG vector assets, so logos stay crisp on retina and 4K displays, and its Clearbit migration guide makes the switch explicit. It splits into a free Logo API and a paid Brand API that supports lookups by domain, ticker, ISIN, and crypto symbol.
Best for: Products where logo rendering quality is visible and important.
LogoKit: Broad Coverage Including Stocks and Crypto
LogoKit advertises 50M+ logos spanning brands, websites, stocks, ETFs, and crypto, with a ticker-based URL pattern (img.logokit.com/ticker/AAPL). Its free tier runs on a daily limit with paid plans scaling from there.
Best for: Apps that need wide coverage across asset classes, including crypto and ETFs.
Quikturn: Built for Finance and Fintech Teams
Quikturn is purpose-built for finance and fintech use cases. It covers 17M+ company logos and lets you search by domain, company name, and stock ticker, the identifiers analysts and trading apps already use, with a 1M-request-per-month free tier and sub-50ms cached responses. Logos return with transparent backgrounds and brand colors, and the same database is reachable through a TypeScript SDK and React components, a web platform, a PowerPoint add-in, and an MCP server.
Best for: Trading platforms, portfolio dashboards, and CRMs whose data is keyed by ticker as often as by domain, or whose colleagues also need logos outside of code.
For a deeper feature-by-feature breakdown, see our full logo API comparison.
Clearbit Logo API Alternatives Compared
| Quikturn | logo.dev | Brandfetch | LogoKit | |
|---|---|---|---|---|
| Coverage | 17M+ | 30M+ | Tens of millions | 50M+ incl. crypto |
| Free tier | 1M req/mo | 500K req/mo | Free (fair use) | ~5K req/day |
| Search by domain | Yes | Yes | Yes | Yes |
| Search by company name | Yes | No | Yes | Limited |
| Search by ticker | Yes | Yes | Yes (Brand API) | Yes |
| PNG / SVG | PNG, SVG, WebP | PNG, SVG | PNG, SVG | PNG, SVG |
| Brand colors | Yes | Limited | Yes (Brand API) | Yes |
| Beyond the API | Web app, add-in, MCP | API only | Browser tools, API | API only |
Free-tier figures and features change; verify current limits on each provider’s pricing page before you commit.
How to Migrate From Clearbit to Quikturn
Here is the practical part. A migration to Quikturn takes most teams well under 30 minutes.
Step 1: Find your existing Clearbit calls
Search your codebase for the old host so you know every place that needs to change:
grep -rn "logo.clearbit.com" . Step 2: Get a free API key
Create a free Quikturn account and generate a publishable key (pk_) for client-side image URLs, or a server key (sk_) for backend calls. The
free tier
includes 1M requests per month, no credit card required.
Step 3: Swap the host
The old Clearbit pattern was a host plus a domain. The Quikturn pattern is the same shape, with a token:
- https://logo.clearbit.com/stripe.com
+ https://logos.getquikturn.io/stripe.com?token=pk_your_key If you only render logos by domain, that one-line change is the entire migration.
Step 4: Use the SDK for backend work (optional)
For server-side enrichment or typed error handling, install the SDK instead of hand-rolling fetch calls:
import { QuikturnClient } from '@quikturn/logos';
const client = new QuikturnClient({ apiKey: process.env.QUIKTURN_API_KEY });
// By domain (the Clearbit equivalent)
const byDomain = await client.logos.get('stripe.com');
// By ticker, handy when your data is keyed by symbol
const byTicker = await client.logos.get('AAPL'); When Lucas, an engineer at a portfolio-tracking startup, migrated off Clearbit, his data was keyed by ticker, not domain. Under Clearbit he had maintained a brittle ticker-to-domain lookup table just to fetch logos. Switching to ticker search let him delete that table entirely. The migration removed code instead of adding it.
Step 5: Verify and handle misses
Confirm logos render across your highest-traffic views, then set a fallback for the rare miss (a monogram or neutral placeholder). The SDK surfaces missing logos as a normal, typed state rather than an exception.
Ready to test the swap? Get a free Quikturn API key and 1M requests, no credit card required. Validate the change against your real data before touching production.
Don’t Forget the Logos Outside Your Codebase
A Clearbit migration is usually framed as a developer task, but the same logo problem lives in your team’s slide decks and spreadsheets too. If your analysts hand-pulled logos from image search for pitch decks and reports, an API alone does not fix it.
This is where Quikturn differs from a pure logo CDN. The same 17M+ database that powers the API also powers a web platform and a PowerPoint add-in, so the engineer fixing the API and the associate building the deck pull from one verified source. When the team at a mid-market advisory firm replaced Clearbit, the developers swapped the host and the deal team stopped hunting for logos by hand in the same week. One vendor closed two gaps.
Frequently Asked Questions
Is the Clearbit Logo API still working?
No. The Clearbit Logo API was permanently shut down on December 8, 2025 following HubSpot’s acquisition of Clearbit. Requests to logo.clearbit.com no longer return logos, so any app still pointing at that host needs to migrate.
What is the best free Clearbit Logo API replacement?
For the largest free allowance, Quikturn offers 1M requests per month and logo.dev offers 500K per month. Brandfetch provides a free Logo API on a fair-use basis. The best choice depends on the search methods you need: domain only (logo.dev), ticker and finance focus (Quikturn), or top-tier SVG quality (Brandfetch).
Is there a true drop-in replacement for Clearbit?
Yes. logo.dev was positioned as the official drop-in replacement, and Quikturn, Brandfetch, and LogoKit all use a similar host-plus-identifier URL pattern. In most cases, migrating is a one-line host change plus an API key.
Can I look up a logo by stock ticker instead of domain?
Yes. Quikturn supports ticker-symbol search directly (for example, AAPL), which is useful when your data is keyed by symbol. logo.dev, Brandfetch’s Brand API, and LogoKit also offer ticker-based lookups.
How long does a Clearbit migration take?
For most teams, under 30 minutes. If you only render logos by domain, the migration is a single host swap plus an API key. Backend enrichment or adding ticker lookups may take a bit longer, but it usually removes code rather than adding it.