Now with domain lookup at $0.01/logo

Every company logo,
in one API call.

Send a name or an exact domain. Get a transparent PNG, JPG, or editable SVG back. No monthly minimums. No attribution required. One key, six endpoints.

No attribution Pay-as-you-go $5.00 free for subscribers Editable SVG output
Pricing

Cheap when you know the domain.
Fair when you don't.

Both endpoints use the same key. Batch up to 700 in one call. Failed lookups are free — you only pay for logos we deliver.

Domain-based

Use when you already know the exact domain

$0.01 / logo
= 100 logos per $1 · ~100–300 ms latency
  • Skips AI resolution, direct CDN fetch
  • Perfect for CRMs, prospecting tools, avatar generators
  • Same PNG/JPG/SVG output as name-based

Name-based

Use when you only have the company name

$0.04 / logo
= 25 logos per $1 · ~1–2 s latency (AI lookup)
  • AI resolves "Meta" → "meta.com" automatically
  • Falls back through TLD variations on miss
  • Best when a human wrote the company name
What you get

Six endpoints, one API key.

Beyond raw resolve, we ship a small toolkit for things you'd otherwise have to build yourself.

POST

/v1/resolve

Names or domains → transparent PNG. Batches up to 700. This is the workhorse.

from $0.01/logo
POST

/v1/logo/colors

Extract the brand palette from a logo. Weighted hex codes, top 1–10.

from $0.02/logo
POST

/v1/logo/monochrome

Recolor every opaque pixel to any hex. Perfect for footers, dark mode, watermarks.

from $0.02/logo
POST

/v1/logo/circle

Circular avatar crop with optional bg color. Drop-in for "trusted by" strips.

from $0.02/logo
POST

/v1/logo/badge

iOS-style rounded-square badge with logo centered on a colored bg. App directories love this.

from $0.02/logo
POST

/v1/wall

Composite up to 100 logos into one tiled image. PNG, JPG, or editable SVG (each logo is its own layer).

from $0.02/logo
Integration

Drop-in in every stack.

Same JSON body across languages. Bearer token auth. Ships in whatever you already use.

# Fetch 3 logos by name — $0.04 each curl -X POST https://superlogo.ai/v1/resolve \ -H "Authorization: Bearer sl_live_YOURKEY" \ -H "Content-Type: application/json" \ -d '{"names":["Apple","Google","Netflix"],"size":512}' # Same via domain lookup — $0.01 each curl -X POST https://superlogo.ai/v1/resolve \ -H "Authorization: Bearer sl_live_YOURKEY" \ -H "Content-Type: application/json" \ -d '{"domains":["apple.com","google.com","netflix.com"]}'
import requests r = requests.post( "https://superlogo.ai/v1/resolve", headers={"Authorization": "Bearer sl_live_YOURKEY"}, json={"domains": ["apple.com", "stripe.com"], "size": 512}, ) for logo in r.json()["logos"]: print(logo["domain"], logo["found"]) print("remaining:", r.headers["X-SuperLogo-Logos-Remaining"])
const res = await fetch("https://superlogo.ai/v1/resolve", { method: "POST", headers: { "Authorization": "Bearer sl_live_YOURKEY", "Content-Type": "application/json", }, body: JSON.stringify({ domains: ["apple.com", "stripe.com"], size: 512, }), }); const data = await res.json(); console.log(data.stats);
{ "request_id": "b2d8e385-5374-4b7c-...", "mode": "domain", "logos": [ { "domain": "apple.com", "found": true, "logo_base64": "iVBORw0KGgoAAAANSUhEUg...", "logo_data_uri": "data:image/png;base64,iVBORw..." } ], "stats": { "requested": 1, "delivered": 1, "cost_cents": 1, "balance_cents": 267, "total_available_cents": 659 } }

No attribution. Ship it in your product.

Every logo we deliver is licensed for use in your product without a required "powered by SuperLogo" credit — at every tier, from free trial to volume. Embed them in commercial apps, marketing sites, dashboards, decks, and white-label products with no legal fine print.

How we compare

Fair pricing, less friction.

Feature SuperLogo Brandfetch Logo.dev
No attribution required Yes No No
Pay-as-you-go, no monthly commit Yes Pro $99/mo $280/yr min
Per-lookup billing (no wasted quota) Yes No No
Editable SVG output Yes No No
Domain-direct lookup at $0.01/logo Yes N/A N/A
6 endpoints on one key (colors / mono / circle / badge / wall / resolve) Yes No No