How to Use
Simple REST API - just make a GET request with any website URL.
Returns high-quality favicon images in PNG format.
API Endpoint
GET https://favicon.abtz.co?url=[WEBSITE-URL]
Example usage:
HTML
<img src="https://favicon.abtz.co?url=github.com" alt="GitHub Favicon" />
JavaScript
fetch('https://favicon.abtz.co?url=stackoverflow.com')
.then(response => response.blob())
.then(blob => {
const img = new Image();
img.src = URL.createObjectURL(blob);
document.body.appendChild(img);
});
cURL
curl "https://favicon.abtz.co?url=google.com" --output favicon.png