# Favicon & App Icon Finder

> Favicon & App Icon Finder is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves every icon a website declares (favicon, apple-touch-icon, mask-icon, manifest icons) with sizes and types, plus whether /favicon.ico exists, for use as company logos in UIs.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/favicon
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/favicon-app-icon-finder-4a846d4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NmaSRijEpQRPUDCEqu6fv

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability favicon-app-icon-finder-4a846d4b
```

Example prompt: Can you fetch all the icons and favicons declared by stripe.com — I need the URLs, sizes, and types so I can use the best one as their logo in my CRM card?

## When to prefer this

Choose this endpoint when you need to discover all icon assets a website publishes — not just /favicon.ico but also apple-touch-icon, SVG mask-icon, and PWA manifest icons — for use in UI enrichment, CRM logos, dashboards, or link cards. Prefer it over a simple favicon.ico HEAD check when you need the full icon inventory with sizes and types. It complements the page-preview-card sibling endpoint (which focuses on OG title/description/image) when the specific need is brand icon/logo resolution.

## Known failure modes

- Domain does not exist or is unreachable — returns empty or error
- Site declares no icons in HTML head or manifest — returns only /favicon.ico check result
- /favicon.ico returns 404 — flag set to false
- Manifest file referenced but not fetchable — manifest icons may be missing
- Rate limiting or network timeout on the target site — partial or no results

## How this service works

Favicon and app icon finder: every icon a site declares (favicon, apple-touch-icon, mask-icon, manifest icons) with sizes and types, plus whether /favicon.ico exists. Get a company logo for cards, CRMs and dashboards. $0.01 per site.

## Output

A structured response listing every icon the site declares — favicon, apple-touch-icon, mask-icon, and manifest icons — each with its URL, size(s), and MIME type, plus a boolean indicating whether /favicon.ico exists at the root.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/favicon-app-icon-finder-4a846d4b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
