Kick Bot Guide | Notification Examples

← Go back

The bot uses the normal messages from Discord itself.

You can read more about the component types here: discord.dev.
See here what all can be inside a message here: discord.dev.

Example #1

Example with @everyone mention and embed.

                    
{
    "content": "@everyone",
    "embeds": [
        {
            "title": "[[STREAMER]] is now live!",
            "description": "*[[TITLE]]*",
            "color": 35406,
            "image": {
                "url": "[[IMAGE]]"
            },
            "footer": {
                "text": "Followers: [[FOLLOWERS]]"
            }
        }
    ]
}
                    
            
            

Example #2

Example with a simple embed and @here.

                    
{
    "content": "@here",
    "embeds": [
        {
            "title": "[[STREAMER]] is now live!",
            "color": 35406,
        }
    ]
}
                    
            
            

Example #3

Simple message with custom buttons.

                    
{
    "content": "🚀 [[STREAMER]] is now live!",
    "components": [
        {
            "type": 1,
            "components": [
                {
                    "type": 2,
                    "label": "Checkout Youtube",
                    "style": 5,
                    "url": "https://www.youtube.com/channel/UC8PjGLhvwIyOx6CoS7wrsIg"
                },
                {
                    "type": 2,
                    "label": "Checkout my Website",
                    "style": 5,
                    "url": "https://kick.bot"
                }
            ]
        }
    ]
}