# Font Awesome Free Icon Search

> Font Awesome Free Icon Search is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search Font Awesome Free's 2000+ icon library by keyword, returning ranked icon names, available styles, and search terms

## Facts

- Endpoint: GET https://api.webbersites.com/api/icon/search
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/font-awesome-free-icon-search-89c38e5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CRP5pnV1YLmnV91G7u7t3

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 font-awesome-free-icon-search-89c38e5d
```

Example prompt: Search Font Awesome Free icons for the keyword 'shopping cart' and tell me the icon names and which styles (solid, regular, or brands) are available for each result.

## When to prefer this

Use this endpoint when you need to identify the correct Font Awesome Free icon name before generating or rendering an icon, especially when you know the concept but not the exact icon identifier. Prefer this over generic icon search when working within the Font Awesome ecosystem or when the downstream step is calling POST /api/icon/generate on the same platform.

## Known failure modes

- No results found for obscure or misspelled keywords — returns empty results array with count 0
- Missing required query parameter 'q' — returns 400 Bad Request
- Invalid style filter value (not solid/regular/brands) — may return unfiltered results or error
- Payment failure via x402 protocol — returns 402 Payment Required before processing

## How this service works

Search Font Awesome Free (2000+ icons) by keyword: matches names, labels, and official search terms, ranked. Returns icon names, available styles (solid/regular/brands), and terms. Use the chosen name in POST /api/icon/generate.

## Output

Returns a ranked list of matching Font Awesome Free icons, each with: icon name (usable in POST /api/icon/generate), available styles (solid, regular, brands), associated search terms, total result count, and the original query string.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Keyword to search, e.g. rocket, shopping cart, music"
      },
      "style": {
       "type": "string",
       "description": "Optional filter: solid, regular, or brands"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "query": {
       "type": "string"
      },
      "results": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "query": "rocket",
  "results": [
   {
    "name": "rocket",
    "label": "Rocket",
    "score": 100,
    "styles": [
     "solid"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/font-awesome-free-icon-search-89c38e5d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
