# Emoji Search

> Emoji Search is a paid API for AI agents from emoji.openverbs.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Searches for emojis by name, shortcode, or keyword and returns matching emoji results

## Facts

- Endpoint: POST https://emoji.openverbs.com/v1/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/emoji-search-6ca579c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FyfqzlE0WkF2rA-BGmBcU

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 emoji-search-6ca579c2 -d '<json body>'
```

Example prompt: Search for emojis related to 'celebration' and show me the top 10 matches.

## When to prefer this

Use this endpoint when you need to discover, search, or look up emojis by natural language keyword, name, or shortcode — especially when building emoji pickers, auto-suggesting emojis in a chat interface, or enriching content with relevant emoji characters.

## Known failure modes

- Empty query string rejected (minLength:1 required)
- Limit out of range (must be 1-100) causes validation error
- No matching emojis found returns empty result set
- Query too vague returns irrelevant or low-confidence matches

## How this service works

Fuzzy-search emoji by name, shortcode or keyword tag, ranked exact → prefix → substring.

## Output

A list of matching emojis up to the specified limit (default 20), each likely including the emoji character, its name, and shortcode, ranked by relevance to the search query.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum matches. Default 20."
      },
      "query": {
       "type": "string",
       "minLength": 1,
       "description": "Name, shortcode or keyword to search for."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emoji-search-6ca579c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emoji.openverbs.com](https://www.zero.xyz/host/emoji.openverbs.com/llms.txt)
