https://github.com/theapache64/emojipedia-api
An unofficial REST API for emojipedia.org
https://github.com/theapache64/emojipedia-api
Last synced: about 1 year ago
JSON representation
An unofficial REST API for emojipedia.org
- Host: GitHub
- URL: https://github.com/theapache64/emojipedia-api
- Owner: theapache64
- License: apache-2.0
- Created: 2019-04-29T14:17:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-06T06:04:39.000Z (almost 7 years ago)
- Last Synced: 2025-02-01T17:44:01.642Z (about 1 year ago)
- Language: Kotlin
- Size: 111 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# emojipedia-api
An unofficial REST API for emojipedia.org
## Download
Download latest jar from [here](https://github.com/theapache64/emojipedia-api/releases)
## Usage
```kotlin
// Getting categories
val categories = EmojiPedia.getCategories()
// Getting emojis from category
val categoryEmojis = EmojiPedia.getEmojis(categories[0])
// Getting popular emojis
val mostPopular = EmojiPedia.getMostPopular()
// Searching emojis
val searchItems = EmojiPedia.search("angry")
```