Skip to main content
POST
/
purchases
/
{orderId}
/
edit-kick-viewers
Edit Kick Viewers
curl --request POST \
  --url https://api.streamskill.pro/v1/purchases/{orderId}/edit-kick-viewers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel": "kick",
  "threads": 100,
  "raid": false,
  "raid_time": 10,
  "connect_time": 5,
  "floating_online": true,
  "geo": "auto",
  "stats_viewers": true
}
'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept-Language
enum<string>
default:en

The language of the response

Available options:
en,
ru

Path Parameters

orderId
integer
required

The ID of the order

Body

application/json

All parameters are optional. Only pass the parameters you want to change.

channel
string

Kick channel name (without https://kick.com/ prefix)

Example:

"kick"

threads
integer

Number of viewers (cannot exceed the originally purchased amount)

Required range: x >= 1
Example:

100

raid
boolean

Enable raid mode

Example:

false

raid_time
integer

Raid duration in minutes

Required range: 5 <= x <= 60
Example:

10

connect_time
integer

Viewer connection time in minutes (1 to min(60, threads))

Required range: 1 <= x <= 60
Example:

5

floating_online
boolean

Enable floating online

Example:

true

geo
enum<string>

Country code for geo targeting

Available options:
auto,
us,
br,
ru,
mx,
tr,
de,
gb,
it,
ca,
ua,
by,
pt,
ar,
es
Example:

"auto"

stats_viewers
boolean

Enable viewer statistics

Example:

true

Response

Action Success

status
string

The status of the action

Example:

"ok"