Emoji API
The Emoji API provides image and metadata for all Unicode emojis. The data is updated periodically to fetch new emojis.
From 3,259 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 315ms | 338ms | 358ms | 629ms | 1121ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/emoji GET
https://api.api-ninjas.com/v1/emoji
Returns a list of emojis according to input parameters. Returns at most 30 results. To access more than 30 results, use the offset parameter to offset results in multiple API calls.
Parameters
At least one of the following parameters (other than offset) must be set:
nameoptionalDescriptive name of emoji.
codeoptionalUnicode character code for the emoji.
groupoptionalMain category the emoji belongs to. Possible values are:
smileys_emotionpeople_bodycomponentanimals_naturefood_drinktravel_placesactivitiesobjectssymbolsflagssubgroupoptionalSub-category the emoji belongs to. Possible values are:
offsetoptionalNumber of results to offset for pagination.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of emoji objects, each containing:
codeUnicode character code for the emoji (e.g., "U+1F642").
characterThe emoji character itself.
imageURL to an image of the emoji.
nameDescriptive name of the emoji.
groupMain category the emoji belongs to.
subgroupSub-category the emoji belongs to.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/emoji?name=slightly%20smiling%20faceHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/emoji?name=smile" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.