Batch upload emojis

Any way to mass upload like on Slack with tools like this (GitHub - lambtron/emojipacks: CLI to bulk upload emojis to your Slack)? So far I’m not what endpoint I could use from the official API, but I was thinking about doing it with a web scraper in python… Any ideas would be appreciated!

Hi @patoupatou,

Our APIs only let you upload one at a time right now, but as long as you don’t hit the rate limit on your server (defaults to 10 requests per second per user, I believe), you’ll be able to use the api/v3/emoji/create API route. We don’t have any Python drivers at this time, but we do have Javascript and Go drivers that you can look at for an example of how to use the API.

Hi @hmhealey,

Thanks for the reply! The Javascript driver should definitely do the trick for now.

Best regards,

Patrick