Reference
Emoji name/shortcode/codepoint cross-walk API
Look up by emoji glyph ('🚀'), CLDR shortcode (':rocket:'), or name keyword and get the canonical name, shortcode, category/group, and the Unicode codepoint sequence — the bidirectional cross-walk agents need to render or interpret emoji. Answers 'what is 🚀', 'shortcode for fire', 'codepoints of 😀', 'emoji for thumbs up'.
Price$0.01per request
MethodPOST
Route/v1/ref/emoji
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
refemojishortcodecldrunicodecodepointemoticonglyph
API URL
Integration docshttps://x402.hexl.dev/v1/ref/emojiExample request
{
"query": "🚀"
}Example response
{
"query": "🚀",
"found": true,
"emoji": "🚀",
"name": "rocket",
"shortcode": "rocket",
"aliases": [],
"group": "Travel & Places",
"codepoints": [
"U+1F680"
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"🚀",
":fire:",
"thumbs up"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}