---
name: fontawesome
description: Search Font Awesome icons via the FA Explorer API. Use when user needs icon names, HTML snippets, or unicode codes.
---

## Font Awesome Icon Explorer API

Base URL: https://fontawesome-explorer.atsignhandle.workers.dev

### Endpoints

**Keyword search**: GET /api/search?q={query}&limit={n}&style={style}
**Smart search**: GET /api/smart?q={query}&limit={n}&style={style}
**Icon detail**: GET /api/icon/{name}
**Browse icons**: GET /api/icons?limit={n}&offset={n}&style={style}

### Parameters

- q: search query (required for search/smart)
- limit: max results (default 50, max 200)
- offset: pagination offset (icons only)
- style: filter (solid, regular, light, thin, duotone, brands, sharp-solid, sharp-regular, sharp-light, sharp-thin)

### How to use

When the user asks for a Font Awesome icon, use curl via the Bash tool:

```bash
curl -s 'https://fontawesome-explorer.atsignhandle.workers.dev/api/search?q=arrow&limit=5'
```

Return the `html` field from results as the icon snippet.
For conceptual queries ("something that represents speed"), use /api/smart instead.

### Install

```bash
curl -sL https://fontawesome-explorer.atsignhandle.workers.dev/api/skill -o ~/.claude/skills/fontawesome.md
```
