API Documentation

Gunakan API FY Store Booster untuk membuat order, cek status, cek layanan, dan cek saldo secara otomatis.

API URL
https://fystore.my.id/api/v2
Parameter Utama
key = API Key akun kamu
action = services / add / status / balance
Contoh Cek Layanan
POST https://fystore.my.id/api/v2

key=API_KEY_KAMU
action=services
Contoh Order
POST https://fystore.my.id/api/v2

key=API_KEY_KAMU
action=add
service=123
link=https://instagram.com/username
quantity=1000
Contoh PHP
<?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;
?>