Nomix Flow Example: 2 accounts
NomixHere's the sequence of requests which instruct Nomix to
like post from account A → turn airplane mode on and off → like post from account B.
It uses two Instagram apps installed on a single Android device. They have two different package names: com.instagram.android and com.instagram.androie. You can use App Cloning to get several Instagram apps on a single device like these.
Both accounts will like the same reel: https://www.instagram.com/reel/CyjT_a-M6Y_
Everything is adjustable! You can use different devices, different package names, different Instagram links and any sequence of commands you like!
TOKEN="your-token-here"
DEVICE_UUID="your-device-uuid-here"
curl -k --location 'https://179.43.141.41:35000/api/v1/tasks' \
--header 'Content-Type: application/json' \
--header "X-Nomix-API-Key: $TOKEN" \
--data '{
"task-name": "like-post-by-link",
"package-pattern": "com.instagram.android",
"device-uuids": [
"'$DEVICE_UUID'"
],
"context": {
"link": "https://www.instagram.com/reel/CyjT_a-M6Y_"
}
}'
curl -k --location 'https://179.43.141.41:35000/api/v1/tasks' \
--header 'Content-Type: application/json' \
--header "X-Nomix-API-Key: $TOKEN" \
--data '{
"task-name": "airplane-mode-on-off",
"package-pattern": "",
"device-uuids": [
"'$DEVICE_UUID'"
],
"context": {}
}'
curl -k --location 'https://179.43.141.41:35000/api/v1/tasks' \
--header 'Content-Type: application/json' \
--header "X-Nomix-API-Key: $TOKEN" \
--data '{
"task-name": "like-post-by-link",
"package-pattern": "com.instagram.androie",
"device-uuids": [
"'$DEVICE_UUID'"
],
"context": {
"link": "https://www.instagram.com/reel/CyjT_a-M6Y_"
}
}'