Clearbit Logo API
Overview
Clearbit Logo returns a company logo image by domain name — no scraping required. Useful for enriching B2B apps with branded visuals instantly.
Beginner Tip
Just pass the company domain as a URL path segment: https://logo.clearbit.com/apple.com. It returns the image directly so you can use it in an img tag without any JSON parsing.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Clearbit Logo",
"description": "Search for company logos and embed them in your projects",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
(binary image) The response body is the logo image itself (PNG), not JSON. Use it directly as an image source. size query param Requested pixel size for the square logo (e.g. 64, 128, 512). Defaults to 128. format query param Image format to return: png (default) or jpg. Content-Type header Response header confirming the image MIME type (image/png or image/jpeg). Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://clearbit.com/docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Apache Superset
Apache Superset's REST API lets you programmatically manage dashboards, charts, datasets, and database connections in your Superset instance.
Charity Search
Charity Search lets you look up verified US non-profit organizations by name, EIN, or keyword.
Instatus
Instatus API lets you programmatically create and update incidents and maintenance windows on your public status page.
Mailchimp
Mailchimp API lets you manage email lists, create campaigns, and track subscriber activity.
mailjet
Mailjet lets you send transactional and marketing emails via a simple REST API using MJML or HTML templates.