Get company logos, brand colors, and AI-powered intelligence for any domain. Fast, reliable, and completely free.
No spam, unsubscribe anytime
https://logo.leadmagic.io/api/stripe.com?size=128TRUSTED BY DEVELOPERS AT
"Saved us weeks of development time. The API just works!"
"95% accuracy rate is incredible. Best logo API we've tried."
"Free tier is generous. Perfect for startups and side projects."
Get started in seconds with any language
// Fetch company logo
const response = await fetch('https://logo.leadmagic.io/api/stripe.com');
const logo = await response.blob();
// Or get complete brand data
const brand = await fetch('https://logo.leadmagic.io/api/brand/stripe.com')
.then(r => r.json());
console.log(brand.colors.primary); // "#635bff"All endpoints available for your application
/api/{domain}Get company logo in any format (PNG, WebP, JPEG, SVG) with flexible rendering options
https://logo.leadmagic.io/api/stripe.com?format=png&size=256/api/brand/{domain}Get complete brand package including logo, colors, intelligence, and social profiles
https://logo.leadmagic.io/api/brand/stripe.com/api/colors/{domain}Extract brand color palette with primary, secondary, and complete palette
https://logo.leadmagic.io/api/colors/spotify.com/api/intelligence/{domain}Get comprehensive company intelligence - industry, size, location, founding year
https://logo.leadmagic.io/api/intelligence/github.com/api/social/{domain}Discover social media profiles across Twitter, LinkedIn, Facebook, Instagram, and more
https://logo.leadmagic.io/api/social/tesla.com/api/tech/{domain}Detect technology stack with categorization (frontend, backend, infrastructure)
https://logo.leadmagic.io/api/tech/vercel.com/api/batch/logosFetch multiple logos at once. Send up to 50 domains in a single request
https://logo.leadmagic.ioPOST { domains: ['stripe.com', 'google.com'] }/api/batch/colorsGet brand colors for multiple companies in a single batch request
https://logo.leadmagic.ioPOST { domains: ['spotify.com', 'netflix.com'] }/api/short/createCreate short URLs for easy sharing of logo links with base62 encoding
https://logo.leadmagic.ioPOST { url: 'logo.leadmagic.io/api/...' }/s/{code}Resolve short URL codes and redirect to the original logo resource
https://logo.leadmagic.io/s/abc123/api/docsInteractive Swagger UI documentation with live API testing and schema exploration
https://logo.leadmagic.io/api/docs/api/openapi.jsonOpenAPI 3.0 specification for automatic client generation and integration
https://logo.leadmagic.io/api/openapi.jsonSee how developers are using Logo API to power their applications
// Enrich company record
const company = await fetch(
'https://logo.leadmagic.io/api/brand/acme.com'
).then(r => r.json());
// Update CRM
await crm.companies.update(companyId, {
logo: company.logo,
primaryColor: company.colors.primary,
industry: company.intelligence.industry,
size: company.intelligence.company_size
});Start free, upgrade when you're ready. No hidden fees.
Questions about pricing or need a custom plan?
No API key required. No credit card needed. Just start making requests.
View Documentation