Find an API

Search public APIs with auth details & Postman guides

← All APIs

Brandfetch API

api.brandfetch.com · Developer Tools

Developer Tools Bearer Token Free Tier Logos Brand Company

High-quality brand assets — logos (SVG, PNG), brand colors, fonts, and company metadata for 15M+ companies. Free tier: 250 requests/month.

Authentication

Bearer Token Free API key at brandfetch.com/developers. Pass as Authorization: Bearer YOUR_KEY.

Sample Requests

GET Get brand data

Get Stripe's full brand assets including logos and colors.

https://api.brandfetch.com/v2/brands/stripe.com

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization Bearer YOUR_KEY
curl -X GET "https://api.brandfetch.com/v2/brands/stripe.com" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
import requests
headers = {
    "Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
response = requests.get(
    "https://api.brandfetch.com/v2/brands/stripe.com",
    headers=headers,
)
print(response.json())
const url = 'https://api.brandfetch.com/v2/brands/stripe.com';

const response = await fetch(url, {
  headers: {
    'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.brandfetch.com/v2/brands/stripe.com"
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("Authorization", "Bearer YOUR_ACCESS_TOKEN")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.brandfetch.com/v2/brands/stripe.com")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_ACCESS_TOKEN"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.brandfetch.com/v2/brands/stripe.com";
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "Authorization: Bearer YOUR_ACCESS_TOKEN"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. Get a free API key at brandfetch.com/developers
  2. Set Authorization: Bearer YOUR_KEY
  3. GET /v2/brands/{domain}
  4. Response includes logos array (svg, png), colors array, and fonts
  5. Free tier: 250 req/month — upgrade for more

Open documentation ↗