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.
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
.
You can make 5 request per 1 second.
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"
}
}
https://emapi.vopp.top/v1/global/[service] (click for example)
{
"_cache": 1627334394,
"emotes": [
{
"code": "WeirdChamp",
"urls": {
"1x": "url",
"2x": "url",
"4x": "url"
}
}
]
}
https://emapi.vopp.top/v1/channel/[id]/[service] (click for example)
{
"_cache": 1627334394,
"emotes": [
{
"code": "WeirdChamp",
"urls": {
"1x": "url",
"2x": "url",
"4x": "url"
}
}
]
}
- Create system based on
Ratelimit
headers.