Gunakan API FY Store Booster untuk membuat order, cek status, cek layanan, dan cek saldo secara otomatis.
https://fystore.my.id/api/v2
key = API Key akun kamu action = services / add / status / balance
POST https://fystore.my.id/api/v2 key=API_KEY_KAMU action=services
POST https://fystore.my.id/api/v2 key=API_KEY_KAMU action=add service=123 link=https://instagram.com/username quantity=1000
<?php
$api_url = "https://fystore.my.id/api/v2";
$api_key = "API_KEY_KAMU";
$post = [
"key" => $api_key,
"action" => "services"
];
$ch = curl_init($api_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
?>