Instagram Likes
GET/POST
https://api.yoozseen.com/api/v1
Likes for an Instagram post or reel. Take the service id from the Service List (action=services, category "Instagram") — the example id may change, so always read the live list. Price is per 1000.
Request
Query parameters
NameDefinition
key *Your Api Key
action *add
service *id service (9023)
link *instagram.com post / reel link
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": "9023",
"link": "https://instagram.com/p/Cxxxxxx/",
"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://instagram.com/p/Cxxxxxx/",
"quantity": 100,
"remains": 0.5,
"currency": "dollar"
}