/** Check Profile */ 'https://pusatpanelsmm.com/api/json.php', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => [ 'api_key' => 'Your Api Key', 'secret_key' => 'Your Secret Key', 'action' => 'profile' ], CURLOPT_TIMEOUT => 30, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, ]); $response = curl_exec($curl); curl_close($curl); echo $response; /** Get Services */ 'https://pusatpanelsmm.com/api/json.php', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => [ 'api_key' => 'Your Api Key', 'secret_key' => 'Your Secret Key', 'action' => 'services' ], CURLOPT_TIMEOUT => 30, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, ]); $response = curl_exec($curl); curl_close($curl); echo $response; /** Order status */ 'https://pusatpanelsmm.com/api/json.php', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => [ 'api_key' => 'Your Api Key', 'secret_key' => 'Your Secret Key', 'action' => 'status', 'id' => '123456' ], CURLOPT_TIMEOUT => 30, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, ]); $response = curl_exec($curl); curl_close($curl); echo $response; /** Add order (Default) */ 'https://pusatpanelsmm.com/api/json.php', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => [ 'api_key' => 'Your Api Key', 'secret_key' => 'Your Secret Key', 'action' => 'order', 'service' => '52532', 'data' => 'url target', 'quantity' => '1000' ], CURLOPT_TIMEOUT => 30, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, ]); $response = curl_exec($curl); curl_close($curl); echo $response; /** Add order (Custom Comments) */ 'https://pusatpanelsmm.com/api/json.php', CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => [ 'api_key' => 'Your Api Key', 'secret_key' => 'Your Secret Key', 'action' => 'order', 'service' => '52090', 'data' => 'url target', 'komen' => "Mantap sekali, semoga bermanfaat\r\n Terima kasih infonya, sangat membantu\r\n Keren, lanjutkan terus\r\n Postingan yang menarik dan positif\r\n Semoga selalu sukses ke depannya\r\n Wah, ini bagus banget sih\r\n Sangat inspiratif, terima kasih sudah berbagi\n Top banget, patut diapresiasi\r\n Setuju banget dengan postingan ini\r\n Semoga membawa dampak yang baik " ], CURLOPT_TIMEOUT => 30, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, ]); $response = curl_exec($curl); curl_close($curl); echo $response;