Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
/ emapi Public archive

Simple service to cache and access emotes from services like BTTV, FFZ, 7TV and Twitch.

License

Notifications You must be signed in to change notification settings

igorovh/emapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

emapi

Simple caching service to connect all emotes sites and parse them into one type. To get channel emotes all you need is channel id, which you can get from Twitch API or here.

Currently available:

  • Twitch Global and Channel (because of lack of time I will add this later)
  • BetterTwitchTV Global and Channel
  • FrankerFaceZ Global and Channel
  • 7TV Global and Channel

In API, all, means every service, but you can also use service name like twitch, bttv, ffz or 7tv.

Limits

You can make 5 request per 1 second.

Emote

We are parsing every emote from every service, so you don't have to parse them yourself.
Some urls can be undefined.

{
    "code": "WeirdChamp",
    "urls": {
        "1x": "url",
        "2x": "url",
        "4x": "url"
    }
}

Global emotes

https://emapi.vopp.top/v1/global/[service] (click for example)

{
    "_cache": 1627334394,
    "emotes": [
        {
            "code": "WeirdChamp",
            "urls": {
                "1x": "url",
                "2x": "url",
                "4x": "url"
            }
        }
    ]
}

Channel emotes

https://emapi.vopp.top/v1/channel/[id]/[service] (click for example)

{
    "_cache": 1627334394,
    "emotes": [
        {
            "code": "WeirdChamp",
            "urls": {
                "1x": "url",
                "2x": "url",
                "4x": "url"
            }
        }
    ]
}

TODO

  • Create system based on Ratelimit headers.

About

Simple service to cache and access emotes from services like BTTV, FFZ, 7TV and Twitch.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published