Free Favicon Extractor

Download any website's favicon in any size. No signup, no limits.

Why Forge Favicon vs Google's favicon service? → · API docs · All APIs

Favicon

Download PNG

Any Website

Works with any domain. Tries HTML parsing, common paths, and Google fallback.

Custom Sizes

Resize from 16px to 512px. Perfect for any use case.

PNG Output

Always get a clean PNG. Automatic format conversion.

Smart Fallbacks

Three extraction strategies ensure maximum reliability.

Cached

1-hour cache for fast repeated lookups.

API Access

Simple GET request. Perfect for dashboards and link previews.

API Usage

# Get a favicon (default size)
curl "https://forge-node.tail2b516d.ts.net/favicon?url=github.com" -o favicon.png

# Get a specific size
curl "https://forge-node.tail2b516d.ts.net/favicon?url=github.com&size=128" -o favicon.png

# Use in HTML
<img src="https://forge-node.tail2b516d.ts.net/favicon?url=github.com&size=32">

# Use in a dashboard to show site icons
sites=("github.com" "google.com" "stackoverflow.com")
for site in "${sites[@]}"; do
  curl "https://forge-node.tail2b516d.ts.net/favicon?url=$site&size=64" -o "${site}.png"
done

Frequently Asked Questions

Is this really free?
Yes. No hidden costs, no premium tier. Free forever.
How does it find favicons?
Three strategies: first it parses the site's HTML for link tags, then tries common paths like /favicon.ico, then falls back to Google's favicon service.
What if a site has no favicon?
The tool will try all three fallback strategies. If none produce a result, you'll get a 404 response.
Can I use this for link previews?
Absolutely. That's one of the most common use cases. Just use the API URL as an img src.
Do you cache results?
Yes, for 1 hour. This means fast responses on repeated lookups and reduced load on target sites.