# Icons8 — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for millions of icons across different visual styles like colorful, pattern-based, and minimalist designs to find the perfect icon for your project. Discover and retrieve icons in your preferred style to enhance your designs and applications.

**Category:** Developer Tools | **Website:** [icons8.com/](https://icons8.com/) | **Docs:** [parse.bot/marketplace/632c52cb-b036-41ee-aa3a-0d9fd0be6f7c/icons8-com-api](https://parse.bot/marketplace/632c52cb-b036-41ee-aa3a-0d9fd0be6f7c/icons8-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-icons8-com-api-632c52cb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_styles

List all available icon styles (platforms) and their codes. Returns a consistent set of styles regardless of the keyword provided. Each style has a display name and a code value usable in search_icon's style parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Keyword passed to the styles API. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-icons8-com-api-632c52cb/list_styles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>"}'
```

### search_icon

Search for a single icon by keyword and optional style. Returns the first matching icon with metadata and image URLs. The style parameter accepts any code from list_styles. When no icons match the keyword+style combination, returns input_not_found. Not all styles have icons for every keyword.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search keyword (e.g. 'dog', 'home', 'car'). |
| `style` | string | No | Style/platform code from list_styles (e.g. 'color', 'cotton', 'bubbles', 'dotty', '3d-fluency'). Not all styles have icons for every keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-icons8-com-api-632c52cb/search_icon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","style":"<string>"}'
```
