# Bulk Favicon Finder

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

Fetches favicons and app icons for up to 20 domains in a single concurrent batch call, returning results in input order with per-item error reporting.

## Facts

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

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 bulk-favicon-finder-c5889abb
```

Example prompt: Can you grab the favicons for all 15 domains in my list — acme.com, widgets.io, shopify.com, stripe.com, notion.so, linear.app, figma.com, vercel.com, supabase.com, clerk.dev, resend.com, planetscale.com, railway.app, fly.io, and render.com — all at once?

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need their favicons retrieved concurrently in a single API call. It is more efficient and cost-effective than calling the single /site/favicon endpoint repeatedly. Prefer this over the single endpoint whenever batch throughput matters — e.g. enriching a directory, populating a dashboard, or syncing brand icons for a saved list. At $0.01 per item equivalent in a batch, it's well suited for bulk enrichment workflows.

## Known failure modes

- Domain unreachable or non-existent — per-item error field set, counted in failure total
- More than 20 domains submitted — request rejected or truncated
- Rate limiting or payment failure — entire batch call rejected
- Some domains return errors while others succeed — partial results with non-zero failure count
- Malformed domain input — per-item error for affected entries

## How this service works

Bulk favicon finder: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /site/favicon endpoint (Favicon and app icon finder). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An array of results in the same order as the input domains, where each item contains the favicon URL and app icon URL for that domain (matching the single /site/favicon endpoint response), plus a per-item error field if the lookup failed. A top-level count of failures is also returned. Up to 20 domains are processed concurrently per call.

## 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/bulk-favicon-finder-c5889abb/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)
