Like / Poll
GET/POST
https://api.yoozseen.com/api/v1
Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service (6)
link *post link
quantity *order quantity
row *row like/votes (start from 1)
column *column like/votes (start from 1)
* - mandatory parameter
Request example
1
2
3
4
5
6
7
8
9
10
11
curl --location 'https://api.yoozseen.com/api/v1/' \
--header 'Content-Type: application/json' \
--data '{
"key": "xxxxxxxxx",
"action": "add",
"service": "6",
"link": "https://t.me/username/123",
"quantity": "order quantity",
"row": "1",
"column": "1"
}'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/123",
"quantity": 100,
"remains": 0.5,
"currency": "dollar"
}