# Emoji Info Lookup

> Emoji Info Lookup 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).

Returns detailed metadata and information about a given emoji character

## Facts

- Endpoint: POST https://emoji.openverbs.com/v1/info
- 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-info-lookup-2e2575cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lZ2_5LXHwJisnQjtNKmdW

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-info-lookup-2e2575cc -d '<json body>'
```

Example prompt: Can you look up the info for the 🎉 emoji and tell me its official name and what it means?

## When to prefer this

Choose this endpoint when you need structured, programmatic metadata about a specific emoji character — such as its official Unicode name, category, or description — rather than a general text explanation. Useful for building emoji pickers, accessibility tooling, chat moderation systems, or any workflow that needs to programmatically reason about emoji identity and semantics.

## Known failure modes

- Invalid or empty emoji input returns an error
- Non-emoji string input may be rejected
- Multi-emoji strings may not be supported (single emoji required per schema minLength:1)
- Unsupported or very new emoji may return incomplete metadata
- Network or payment authorization failures result in no response

## How this service works

Given an emoji character (or any string), return its code points and — if known — its name, category, shortcodes and tags. An unknown emoji is a successful result with `known:false`, not an error.

## Output

Returns structured metadata about the given emoji character, likely including its official Unicode name, category, description, codepoint, and other relevant properties such as version or group classification.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "emoji": {
       "type": "string",
       "minLength": 1,
       "description": "Emoji character to inspect."
      }
     },
     "required": [
      "emoji"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emoji-info-lookup-2e2575cc/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)
