# Simpleicons — 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 and retrieve over 3,300 brand and technology icons with their official hex colors and SVG URLs for use in your projects. Browse the complete collection or look up specific icons by name to quickly find the logos and branding assets you need.

**Category:** Developer Tools | **Website:** [simpleicons.org/](https://simpleicons.org/) | **Docs:** [parse.bot/marketplace/b0c2d9d9-28d5-4b18-b65a-3024c1eb356f/simpleicons-org-api](https://parse.bot/marketplace/b0c2d9d9-28d5-4b18-b65a-3024c1eb356f/simpleicons-org-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-simpleicons-org-api-b0c2d9d9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_icon

Point-lookup for a single icon by its title or slug. Returns the icon's official name, hex brand color, SVG logo URL, and metadata including source, guidelines, license, and aliases when available. Returns input_not_found when no icon matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Icon title (e.g., 'GitHub', 'React', 'C++') or slug (e.g., 'github', 'react', 'cplusplus') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simpleicons-org-api-b0c2d9d9/get_icon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### list_icons

Paginated listing of all icons ordered alphabetically by title. Each page returns up to `limit` icons starting from `offset`. Use total to know when to stop advancing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of icons to return per page |
| `offset` | integer | No | Starting index for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simpleicons-org-api-b0c2d9d9/list_icons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>"}'
```

### search_icons

Full-text search across icon titles, slugs, and aliases (aka, old names, localized names). Returns matching icons ordered by title match quality. Paginates as a single page capped by limit.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `query` | string | Yes | Search keyword (e.g., 'google', 'react', 'amazon') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simpleicons-org-api-b0c2d9d9/search_icons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
