Add Order Stars
GET/POST
https://api.yoozseen.ir/api/v1
List Service for Stars
* 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
[
{
"service": 10,
"name": "stars",
"category": "Telegram",
"min": 50,
"max": 10000
}
]Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service
link *username account with @
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": "@username",
"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"
}