Emoji tool

Emojis file

Generate a json file containing information about all the emojis in your application

To access this option you must have selected an existing application or previously entered an application token. See more details here

Emoji file

With the Generate emoji file option you can obtain a json file with all the names and IDs of your application's emojis so that you can use them in the texts and components of your bot project through utility functions.

You can enter the name and path of the file (by default it will be emojis.json). But you can choose another name for the file such as emojis.dev.json or even pass the path to a folder ./assets/emojis.json.

Next, you can choose how the emojis will be listed in the file

  • IDs - The values of all properties are just the IDs of the emojis
  • URLs - The values of all properties are the CDN URLs of the emojis

The example below illustrates what the generated emoji file looks like (Fictitious Names and IDs).

emojis.json
{
    "animated": {
        "bell": "1069586362549927988",
        "celebration": "1069586365649391617",
        "dots": "1069586367612321792",
        "fatal": "1069586369831243858",
        "refresh": "1069586371079069010"
    },
    "static":{
        "users": "1069586386985812032",
        "danger": "1069586628910270884",
        "info": "1069586629894869037",
        "success": "1069586631614529566",
        "warning": "1069586632520503411",
        
    }
}

On this page