Add Order Reaction
GET/POST
https://api.yoozseen.ir/api/v1
List Service for Reaction
* For better tracking of the product list and accessing prices or other details please use the Service List method
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
{
"service": 7,
"name": "reaction",
"category": "Telegram",
"min": 1,
"max": 150000
},
{
"service": 9,
"name": "reaction_stars",
"category": "Telegram",
"min": 1,
"max": 10000
}
]Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service
link *post link
quantity *order quantity
reactionMandatory * for normal reaction ("๐", "๐", "โค๏ธ",...)
speedspeed for order (0,1,2,5,15,30)...
startdelayDelay to start (0-1440) mins
intervalDistance between each number (0-1440) mins
* - mandatory parameter
Request example
1
2
3
4
5
6
7
8
9
10
11
12
13
curl --location 'https://api.yoozseen.ir/api/v1/' \
--header 'Content-Type: application/json' \
--data '{
"key": "xxxxxxxxx",
"action": "add",
"service": "id service",
"link": "post link",
"quantity": "order quantity",
"reaction": "๐",
"speed": 0,
"startdelay": 0,
"interval": 0
}'Response
* Meaning and usage of each parameter
NameDescription
statusReturns the order status: (pending โ registered and in progress) (error โ registration failed) (completed โ completed order)
message_errorerror description
orderyour order
quantityyour order quantity
linkyour order link
rateprice (dollar)
currencycurrency type
Response example
1
2
3
4
5
6
7
8
{
"status": "pending",
"order": 152452543,
"link": "https://t.me/YoozSeen_English/10",
"quantity": "10",
"remains": 0.005,
"currency": "dollar"
}