FREE Extract favicons from any website. No signup required.
| Method | Endpoint | Description |
|---|---|---|
GET | /favicon?url=... | Get favicon for a URL or domain |
GET | /health/favicon | Health check |
| Param | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL or domain (e.g. github.com) |
size | int | No | Resize to NxN pixels (16-512) |
# Get favicon (original size)
curl "https://forge-node.tail2b516d.ts.net/favicon?url=github.com" -o favicon.ico
# Get 64x64 PNG
curl "https://forge-node.tail2b516d.ts.net/favicon?url=github.com&size=64" -o favicon.png
# Use in HTML
<img src="https://forge-node.tail2b516d.ts.net/favicon?url=github.com&size=32">
<link rel="icon"> tags/favicon.ico, /apple-touch-icon.png)Returns the favicon image directly with appropriate Content-Type header. If size is specified, output is always PNG.
404 if no favicon found for the URL.