English
Learn how to subscribe to events with the Kick Public API
curl --request GET \ --url "https://api.kick.com/public/v1/events/subscriptions" \ --header "Authorization: Bearer {YOUR_TOKEN}"
Show properties
curl --request POST \ --url "https://api.kick.com/public/v1/events/subscriptions" \ --header "Authorization: Bearer {YOUR_TOKEN}" \ --header "Content-Type: application/json" \ --data '{ "events": [ { "name": "channel.followed", "version": 1 }, { "name": "chat.message.sent", "version": 1 } ], "method": "webhook", "broadcaster_user_id": 123456 }'
curl --request DELETE \ --url "https://api.kick.com/public/v1/events/subscriptions?id=abc123&id=def456" \ --header "Authorization: Bearer {YOUR_TOKEN}"