Add Order Boost
GET/POST
https://api.yoozseen.ir/api/v1
List Service for Boost
* 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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
{
"service": 11,
"name": "boost 1 day",
"category": "Telegram",
"min": 10,
"max": 50000
},
{
"service": 12,
"name": "boost 7 day",
"category": "Telegram",
"min": 8,
"max": 25000
},
{
"service": 13,
"name": "boost 15 day",
"category": "Telegram",
"min": 10,
"max": 5000
},
{
"service": 14,
"name": "boost 30 day",
"category": "Telegram",
"min": 8,
"max": 10000
}
]Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service
link *link boost
quantity *order quantity
* - mandatory parameter
Request example
1
2
3
4
5
6
7
8
9
curl --location 'https://api.yoozseen.ir/api/v1/' \
--header 'Content-Type: application/json' \
--data '{
"key": "xxxxxxxxx",
"action": "add",
"service": "id service",
"link": "link boost",
"quantity": "order quantity"
}'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"
}