Introduction to BrandQL
Discover BrandQL, a powerful API for fetching high-quality brand logos from any domain instantly, serving as a reliable alternative to discontinued services like Clearbit's Logo API.
This documentation was generated as a starter kit template based on your brand. Please review and customize the content to accurately reflect your product's features, APIs, and capabilities.
Overview
BrandQL provides a simple REST API to fetch high-quality brand logos for any domain instantly. As a reliable alternative to discontinued services like Clearbit's Logo API, you get just-in-time fetching for fresh results, even for uncached domains. With a generous free tier, integrate logos into your CRM, dashboard, or app without static databases or high costs.
Key Features
Just-in-Time Fetching
BrandQL fetches logos on-demand for any domain, ensuring always-fresh results without maintaining a stale database.
Generous Free Tier
Start building immediately with high limits on free requests—no credit card required.
High-Quality Logos
Optimized PNG and SVG formats in multiple sizes, with fallback options like initials.
Quick Start
Get your first logo in under a minute.
Sign Up
Create a free account at brandql.com/signup to get your API key.
Fetch a Logo
Use your API key with a simple GET request.
curl "https://api.brandql.com/logo/paypal.com?api_key=YOUR_API_KEY"
const response = await fetch('https://api.brandql.com/logo/paypal.com?api_key=YOUR_API_KEY');
const data = await response.json();
console.log(data.logo); // https://cdn.brandql.com/paypal.png
Display the Logo
Use the returned logo URL in an <img> tag.
<img src={data.logo} alt="PayPal logo" width={128} height={128} />
SDKs and Integrations
BrandQL works with modern frameworks out of the box.
Install the React SDK:
npm install @brandql/react
import { BrandLogo } from '@brandql/react';
<BrandLogo domain="paypal.com" size={64} fallback="initials" />
Direct HTTP calls—no SDK needed.
Next Steps
Quickstart Guide
Dive deeper into API parameters and advanced usage.
Authentication
Secure your API key and manage usage.
API Reference
Full endpoint details and responses.
Ready to build? Head to the Quickstart for complete setup instructions.