An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![poster](https://dummyimage.com/1200x400/000/fff.png&text=emojipedia-api)

# 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")
```