A simple and fun way to find, copy, and use emojis! Browse our collection through the web interface or access emojis programmatically via our API.
- Visit emoji-app.com to browse through our emoji collection
- Click on any emoji card to instantly copy it to your clipboard
- See how many times each emoji has been used
- The count updates in real-time when you or others copy the emoji
Need a specific emoji in your application? Just make a GET request:
# Get a smiling face emoji
curl https://emoji-app.com/api/emoji/smiling%20face
# Get a heart emoji
curl https://emoji-app.com/api/emoji/red%20heart
# Get a random emoji
curl https://emoji-app.com/api/random
Response for specific or random emoji:
{
"emoji": "😊",
"name": "smiling face",
"count": 42 // How many times this emoji has been used
}
Want to see what's trending? Get the top 10 most used emojis:
curl https://emoji-app.com/api/stats
Response:
[
{
"emoji": "😊",
"name": "smiling face",
"copy_count": 42, // Times copied from website
"api_count": 12, // Times accessed via API
"last_used": "2024-01-01 12:00:00"
},
// ... more emojis
]
Here are some popular emojis you can try:
- Faces: "smiling face", "winking face", "thinking face"
- Hearts: "red heart", "blue heart", "purple heart"
- Animals: "cat", "dog", "monkey", "unicorn"
- Objects: "rocket", "camera", "books"
- And many more!
Example API usage:
curl https://emoji-app.com/api/emoji/thinking%20face
All endpoints are available at https://emoji-app.com/api/
:
GET /emoji/<emoji_name>
- Get a specific emoji by nameGET /stats
- Get top 10 most used emojis with usage statisticsGET /increment/<emoji_name>
- Record a copy event for an emoji
The best way to support this project is to contribute! But if you would like to buy me a coffee, there is a link below.
The API is free to use with reasonable rate limits. Please contact us if you need higher limits for your application.
If you want to run your own instance or contribute to the project, check out our Developer Guide.