# Emojikitchen — 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.

> Create unique emoji mashups by combining any two emojis using Google's Emoji Kitchen library of over 150,000 combinations, and search or get detailed information about individual emojis. Perfect for adding fun, personalized emoji graphics to your projects, messages, or creative content.

**Category:** Developer Tools | **Website:** [emojikitchen.dev/](https://emojikitchen.dev/) | **Docs:** [parse.bot/marketplace/191d6866-b720-46de-a5e5-4885db5984ca/emojikitchen-dev-api](https://parse.bot/marketplace/191d6866-b720-46de-a5e5-4885db5984ca/emojikitchen-dev-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-emojikitchen-dev-api-191d6866/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_combinations

Extract all emojis and their unique combinations. Returns metadata for 619 emojis and unique paired combinations extracted from Google's Emoji Kitchen data bundle. The combinations list contains deduplicated entries; use the limit parameter to control how many are returned. Each emoji includes its Unicode codepoint, display character, category, subcategory, and keyword tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of combinations to return. Omitting returns all available combinations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-emojikitchen-dev-api-191d6866/get_combinations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_emoji_details

Get details and all available combinations for a specific emoji identified by its Unicode codepoint. Returns emoji metadata (name, character, category, subcategory, keywords) and a list of all its known combinations with other emojis. Each combination includes the image URL, descriptive alt text, both component emojis, and the date it was added.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `codepoint` | string | Yes | Emoji codepoint in lowercase hex format (e.g., '1fa84', '2615', '1f600'). Multi-codepoint emojis use dash separators (e.g., '1f642-200d-2195-fe0f'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-emojikitchen-dev-api-191d6866/get_emoji_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"codepoint":"<string>"}'
```

### search_emojis

Search for emojis by name or keyword. Matches against the emoji alt name and keywords list using case-insensitive partial matching. Returns all matching emoji metadata objects including codepoint, display character, category, subcategory, and keyword tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against emoji names and keywords (e.g., 'cat', 'smile', 'fire'). Case-insensitive partial match. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-emojikitchen-dev-api-191d6866/search_emojis \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
