Members
GET/POST
https://api.yoozseen.com/api/v1
Each id is a members plan by audience + duration — 9001 channel 1-month, 9002 channel 3-month, 9003 group 1-month, 9004 group 3-month, 9005 channel Irani, 9008 channel 6-month, 9009 group 6-month, 9013/9014/9015 premium channel (20-day / 1-month / 2-month), 9016/9017/9018 premium group (20-day / 1-month / 2-month). link = channel/group link, quantity = number of members. Always confirm the live ids from Service List.
Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service (9001, 9002, 9003, 9004, 9005, 9008, 9009, 9013, 9014, 9015, 9016, 9017, 9018)
link *channel link / @username
quantity *order quantity
* - mandatory parameter
Request example
1
2
3
4
5
6
7
8
9
curl --location 'https://api.yoozseen.com/api/v1/' \
--header 'Content-Type: application/json' \
--data '{
"key": "xxxxxxxxx",
"action": "add",
"service": "9001",
"link": "https://t.me/username",
"quantity": "order quantity"
}'Response
* Meaning and usage of each parameter
NameDescription
status Returns the order status: (pending — registered and in progress) (error — registration failed) (completed — completed order)
message_error error description
order your order
quantity your order quantity
link your order link
rate price (dollar)
currency currency type
Response example
1
2
3
4
5
6
7
8
{
"status": "pending",
"order": 1500123,
"link": "https://t.me/username",
"quantity": 100,
"remains": 0.5,
"currency": "dollar"
}