English
Retrieve and manage user data
curl --request GET \ --url "https://api.kick.com/public/v1/users/kickstreamer" \ --header "Authorization: Bearer {YOUR_TOKEN}"
{ "user": { "id": 12345, "username": "kickstreamer", "display_name": "Kick Streamer", "bio": "Professional streamer on Kick. Follow me for daily gaming content!", "profile_picture": "https://kick-profiles.s3.amazonaws.com/kickstreamer.jpeg", "followers_count": 25000, "following_count": 150, "is_verified": true, "created_at": "2022-10-01T12:00:00Z" }, "message": "User retrieved successfully" }
users:read
Show User object
Show Array of user objects
curl --request GET \ --url "https://api.kick.com/public/v1/users/search?query=kick&limit=10" \ --header "Authorization: Bearer {YOUR_TOKEN}"
{ "data": [ { "id": 12345, "username": "kickstreamer", "display_name": "Kick Streamer", "profile_picture": "https://kick-profiles.s3.amazonaws.com/kickstreamer.jpeg", "is_verified": true }, { "id": 23456, "username": "kickgamer", "display_name": "Kick Gamer", "profile_picture": "https://kick-profiles.s3.amazonaws.com/kickgamer.jpeg", "is_verified": false }, { "id": 34567, "username": "kicknation", "display_name": "Kick Nation", "profile_picture": "https://kick-profiles.s3.amazonaws.com/kicknation.jpeg", "is_verified": true } ], "message": "Users found successfully" }