Tools / Brandfetch
Visit official site north_east

Brandfetch

Instant access to brand logos, colors, and assets for millions of companies. Brandfetch provides high-quality brand resources for designers, developers, and marketers.

Features

Brand Assets

  • Logos: SVG, PNG in multiple sizes
  • Colors: Brand color palettes
  • Fonts: Typography information
  • Icons: Brand-specific icons
  • Screenshots: Product images
  • Banners: Social media headers
  • Favicons: Website icons

Asset Formats

  • Vector: SVG, EPS, PDF
  • Raster: PNG with transparency
  • Sizes: Multiple resolutions
  • Themes: Light and dark versions
  • Variants: Logo variations (icon, full, symbol)

Brand Information

  • Company Details: Name, description, website
  • Social Links: Twitter, LinkedIn, Facebook, etc.
  • Industry: Business category
  • Domain: Primary domain
  • Aliases: Alternative names

Quick Access

  1. Visit brandfetch.com
  2. Search for company name
  3. View brand assets
  4. Download what you need

Browser Extension

  • Search from any page
  • Quick logo downloads
  • Copy logo URLs
  • Available for Chrome, Firefox, Edge

API Access

Brand API

curl https://api.brandfetch.io/v2/brands/stripe.com \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Example

{
  "name": "Stripe",
  "domain": "stripe.com",
  "description": "Online payment processing",
  "logos": [
    {
      "type": "logo",
      "theme": "dark",
      "formats": [
        {
          "src": "https://cdn.brandfetch.io/.../logo.svg",
          "format": "svg"
        },
        {
          "src": "https://cdn.brandfetch.io/.../logo.png",
          "format": "png",
          "width": 400,
          "height": 400
        }
      ]
    }
  ],
  "colors": [
    {
      "hex": "#635BFF",
      "type": "primary"
    }
  ]
}

Logo URL

https://cdn.brandfetch.io/{brandId}/w/{width}/h/{height}/logo.png

Use Cases

Web Development

  • Company logos for integrations
  • Partner logos for footer
  • Payment provider logos
  • Technology stack badges

Design Work

  • Client logo references
  • Competitor analysis
  • Brand guidelines research
  • Presentation materials

Marketing

  • Partner showcase pages
  • Case study graphics
  • Integration pages
  • Email signatures

Documentation

  • API documentation logos
  • Integration guides
  • Tutorial screenshots
  • Product comparisons

API Integration

C#

using System.Net.Http.Json;
using System.Text.Json.Nodes;

using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer YOUR_API_KEY");

async Task<string> GetBrandLogoUrl(string domain)
{
    var brand = await client.GetFromJsonAsync<JsonNode>(
        
quot;https://api.brandfetch.io/v2/brands/{domain}" ); return brand!["logos"]![0]!["formats"]![0]!["src"]!.GetValue<string>(); } // Usage var stripeLogo = await GetBrandLogoUrl("stripe.com"); Console.WriteLine(stripeLogo);

React Component

import { useEffect, useState } from 'react';

function BrandLogo({ domain }) {
  const [logo, setLogo] = useState('');

  useEffect(() => {
    fetch(`https://api.brandfetch.io/v2/brands/${domain}`)
      .then(res => res.json())
      .then(brand => {
        const logoUrl = brand.logos[0].formats.find(
          f => f.format === 'svg'
        ).src;
        setLogo(logoUrl);
      });
  }, [domain]);

  return <img src={logo} alt={domain} />;
}

CDN Usage

Direct Image URLs

<!-- Stripe logo, 200x200px -->
<img src="https://cdn.brandfetch.io/idGDPoQvUd/w/200/h/200/logo.png" />

<!-- Dark theme -->
<img src="https://cdn.brandfetch.io/idGDPoQvUd/w/200/h/200/theme/dark/logo.png" />

<!-- SVG format -->
<img src="https://cdn.brandfetch.io/idGDPoQvUd/theme/dark/logo.svg" />

Responsive Images

<img
  src="https://cdn.brandfetch.io/idGDPoQvUd/w/400/h/400/logo.png"
  srcset="
    https://cdn.brandfetch.io/idGDPoQvUd/w/200/h/200/logo.png 1x,
    https://cdn.brandfetch.io/idGDPoQvUd/w/400/h/400/logo.png 2x
  "
  alt="Stripe"
/>

Pricing

Free Tier

  • 1,000 API requests/month
  • Access to all brand assets
  • Basic support

Pro ($99/month)

  • 10,000 API requests/month
  • Priority support
  • Commercial license

Business ($299/month)

  • 100,000 API requests/month
  • Custom integration support
  • SLA guarantee

Enterprise (Custom)

  • Unlimited requests
  • Dedicated support
  • Custom contracts

Coverage

  • Brands: Millions of companies
  • Updates: Regularly updated
  • Global: International brands
  • Startups: Including new companies
  • Established: Fortune 500 companies

Quality Standards

Logo Requirements

  • High resolution
  • Transparent backgrounds
  • Multiple formats
  • Official brand assets
  • Properly cropped

Verification

  • Community submissions
  • Manual verification
  • Brand owner submissions
  • Quality checks

Features

  • Company name search
  • Domain search
  • Industry filtering
  • Autocomplete suggestions

Organization

  • Collections
  • Favorites
  • Recent downloads
  • Team sharing (paid plans)

Customization

  • Size adjustment
  • Format selection
  • Theme switching
  • Color extraction

Browser Extension

Features

  • Right-click to fetch logo
  • Keyboard shortcuts
  • Download options
  • Quick copy URL

Installation

Available for:

  • Chrome Web Store
  • Firefox Add-ons
  • Microsoft Edge Add-ons

Best Practices

Development

  • Cache logos locally after fetch
  • Use CDN URLs for better performance
  • Implement fallback images
  • Respect rate limits

Design

  • Use official logos from Brandfetch
  • Match brand guidelines
  • Check licensing requirements
  • Keep logos updated
  • Review usage terms
  • Some logos trademarked
  • Use for legitimate purposes
  • Respect brand guidelines

Alternatives

  • Clearbit Logo API: Similar service
  • Google Favicon Service: Basic favicons
  • Logoipsum: Placeholder logos
  • Manual Collection: Direct from brands

Common Use Cases

Integration Pages

<div class="integrations">
  <h2>We integrate with:</h2>
  <div class="logos">
    <img src="https://cdn.brandfetch.io/.../stripe/logo.svg" />
    <img src="https://cdn.brandfetch.io/.../github/logo.svg" />
    <img src="https://cdn.brandfetch.io/.../slack/logo.svg" />
  </div>
</div>

Payment Methods

<div class="payment-methods">
  <img src="https://cdn.brandfetch.io/.../visa/logo.svg" />
  <img src="https://cdn.brandfetch.io/.../mastercard/logo.svg" />
  <img src="https://cdn.brandfetch.io/.../amex/logo.svg" />
</div>

Tech Stack

<div class="built-with">
  <img src="https://cdn.brandfetch.io/.../react/logo.svg" />
  <img src="https://cdn.brandfetch.io/.../nodejs/logo.svg" />
  <img src="https://cdn.brandfetch.io/.../postgresql/logo.svg" />
</div>

Best For

  • Developers: Quick logo access for projects
  • Designers: Brand research and reference
  • Marketers: Partnership pages and materials
  • Product Teams: Integration showcases
  • Documentation: Visual guides and tutorials

Brandfetch is the go-to resource for brand assets, saving developers and designers countless hours tracking down official logos and brand colors. The free tier is generous and the API makes automation trivial.

Ready to get started? Visit the official site to learn more.

Visit official site north_east
An unhandled error has occurred. Reload