Order API Gemini Pro

Method POST
Rate Limit 10 Request / Menit
Parameter Deskripsi
key API Key anda
Example Request (PHP cURL)
<?php
$url = "https://jagoanpedia.com/api/gemini-services";
$data = [
    "key" =>  "API Key" ];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
curl_close($ch);

echo "Response: " . $response;
?>
                            
Success Response:
{
    "success": true,
    "data": {
        "system_status": "Online",
        "services": [
            {
                "category": "Pre-Order",
                "endpoint": "gemini-order",
                "parameter": { "channel": "fast" },
                "name": "Gemini Pro 1 Tahun (Fast)",
                "price": 50000,
                "stock": 15,
                "is_available": true
            },
            {
                "category": "Instan (Ready)",
                "endpoint": "gemini-instan",
                "parameter": { "akun_type": "invite_link" },
                "name": "Gemini Pro 1 Tahun (Invite Link)",
                "price": 15000,
                "stock": 3,
                "is_available": true
            }
        ]
    }
}
                            
Failed Response:
{
    "success": false,
    "error": "Your API Key is not valid"
}
                            
Parameter Deskripsi
key API Key anda
email Email target untuk aktivasi Gemini
password Password dari email target
twofa_url Kode rahasia 2FA (26 atau 32 karakter)
channel Pilihan kecepatan: normal atau fast
Example Request (PHP cURL)
<?php
$url = "https://jagoanpedia.com/api/gemini-order";
$data = [
    "key" =>  "API Key" ,
    "email" => "[email protected]",
    "password" => "rahasia123",
    "twofa_url" => "JBSWY3DPEHPK3PXP",
    "channel" => "fast"
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
curl_close($ch);

echo "Response: " . $response;
?>
                            
Success Response:
{
    "success": true,
    "message": "Pesanan berhasil dibuat!",
    "data": {
        "id": 1234,
        "target": "[email protected]",
        "price": 50000,
        "status": "Pending"
    }
}
                            
Failed response:
{
    "success": false,
    "error": "Saldo Anda tidak cukup!"
}
                            
Parameter Deskripsi
key API Key anda
whatsapp Nomor WhatsApp tujuan target
akun_type Varian layanan: full_account atau invite_link
Example Request (PHP cURL)
<?php
$url = "https://jagoanpedia.com/api/gemini-instan";
$data = [
    "key" =>  "API Key" ,
    "whatsapp" => "08123456789",
    "akun_type" => "invite_link"
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
curl_close($ch);

echo "Response: " . $response;
?>
                            
Success Response:
{
    "success": true,
    "message": "Pembelian berhasil! Detail tertera pada SN.",
    "data": {
        "id": 1235,
        "service_name": "Gemini Pro 1 Tahun (Invite Link)",
        "price": 15000,
        "sn": "Tautan Invite Anda: https://...",
        "status": "Success"
    }
}
                            
Failed response:
{
    "success": false,
    "error": "Maaf, stok varian ini sedang habis."
}