English
Integrate chat functionality with the Kick Public API
curl --request POST \ --url "https://api.kick.com/public/v1/chat" \ --header "Authorization: Bearer {YOUR_TOKEN}" \ --header "Content-Type: application/json" \ --data '{ "type": "user", "content": "Hello, world!", "broadcaster_user_id": 123456 }'
chat:write
Show properties
{ "data": { "is_sent": true, "message_id": "abc123def456ghi789" }, "message": "Message sent successfully" }