format · favicon-package

Favicon Package

Complete multi-platform favicon set

Generate a complete favicon package: ICO file, PNG variants, Apple touch icon, Android chrome icons, site.webmanifest, and ready-to-paste HTML meta tags.

Features

All sizes

16×16, 32×32, 48×48, 96×96, 180×180, 192×192, 512×512 PNGs.

Apple touch icon

180×180 apple-touch-icon.png for iOS home screen.

Android chrome icons

192×192 and 512×512 for Android PWA installs.

site.webmanifest

Pre-filled Web App Manifest with your icon paths.

HTML meta tags

Copy-paste snippet with all link and meta tags pre-filled.

Zip download

All files bundled in a single zip for easy deployment.

Example Request

bash
curl -X POST https://api.assetforge.io/v1/generate \
  -H "Authorization: Bearer af_live_xxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "dark mode SaaS app icon, abstract A mark",
    "formats": ["favicon-package"],
    "color_scheme": ["#FF6B1A"],
    "style": "bold"
  }'

Example Response

json
{
  "assets": [
    {
      "format": "favicon-package",
      "url": "https://cdn.assetforge.io/.../favicon-package.zip",
      "size_bytes": 24576,
      "manifest": {
        "favicon_16x16": "favicon-16x16.png",
        "favicon_32x32": "favicon-32x32.png",
        "apple_touch_icon": "apple-touch-icon.png",
        "android_chrome_192": "android-chrome-192x192.png",
        "android_chrome_512": "android-chrome-512x512.png",
        "webmanifest": "site.webmanifest",
        "html_snippet": "<link rel=\"icon\" type=\"image/x-icon\" href=\"/favicon.ico\">\n<link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/apple-touch-icon.png\">\n<link rel=\"manifest\" href=\"/site.webmanifest\">"
      }
    }
  ]
}

NOTES

  • Extract the zip into your /public directory and paste the HTML snippet into your <head>.