Extract Favicons & Brand Assets from Any Website
Bulk-extract favicons, Apple touch icons, Open Graph images, and web app manifest icons from any list of URLs. Returns all available sizes and formats. HTTP-only — no Chrome, no Playwright.
Anti-Bot
TLS fingerprinting
What You Can Extract
- Standard favicons — /favicon.ico, link[rel="icon"] in all sizes
- Apple touch icons — high-resolution icons for iOS devices
- Open Graph images — og:image meta tags for social sharing
- Web app manifest — icons defined in manifest.json / site.webmanifest
- Multiple formats — ICO, PNG, SVG, WEBP detection
- Bulk processing — process thousands of domains in a single run
Primary Use Cases
- CRM enrichment — add company logos to lead lists and contact databases
- Brand monitoring — collect and track brand visual assets at scale
- Directory builders — populate business directories with company logos
- Competitive analysis — gather competitor brand assets for market research
- Dashboard UIs — enrich dashboards and reports with company favicons
API Example
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~favicon-extractor/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"https://google.com",
"https://github.com",
"https://stripe.com"
]
}'
Integrations
- n8n / Make / Zapier — trigger runs and process results via webhook
- AI Agents (MCP) — Claude Desktop, Cursor, VS Code, LangChain, LlamaIndex
- Python / Node.js — Apify SDK for programmatic access
- Google Sheets / Airtable — export via Apify integrations
How It Compares
| Feature | NanoScrape | Browser-based tools |
| Docker image | ~12MB | 500MB - 2GB |
| RAM usage | 128MB | 1-4GB |
| Cost | Pay-per-result | $5 - $20/1k |
| Speed (1k domains) | ~2 min | 15-30 min |
| Formats detected | ICO, PNG, SVG, WEBP | Varies |
| Manifest parsing | Yes | Rarely |
Output Fields
| Field | Type | Example |
| domain | string | google.com |
| favicon_url | string | https://google.com/favicon.ico |
| icons | array | [{"url": "...", "size": "192x192", "type": "png"}] |
| apple_touch_icon | string | https://google.com/apple-touch-icon.png |
| og_image | string | https://google.com/og-image.png |