Official workflow, audited logging, and verified reseller path. Choose a package, redeem a code, or integrate programmatically.
Pick a ready package, fill your BIGO ID, and pay securely.
Already have a code? Redeem it instantly.
Integrate your store or platform. Use our secure endpoints to create recharge orders, query status, and redeem codes programmatically.
Base URL: https://bigodiamond.com/api/v1
— contact us at support@bigodiamond.com to request your API key.
# cURL
curl -X POST "https://bigodiamond.com/api/v1/orders" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bigoid": "yehya_aali",
"diamonds": 200,
"client_ref": "ORD-12345"
}'
# cURL
curl -X GET "https://bigodiamond.com/api/v1/orders/ORD-12345" \
-H "Authorization: Bearer YOUR_API_KEY"
# cURL
curl -X POST "https://bigodiamond.com/api/v1/redeem" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bigoid": "yehya_aali",
"code": "XXXX-XXXX-XXXX"
}'
<?php
$api = "https://bigodiamond.com/api/v1/orders";
$payload = [
"bigoid" => "yehya_aali",
"diamonds" => 200,
"client_ref" => "ORD-12345"
];
$ch = curl_init($api);
curl_setopt_array($ch, [
CURLOPT_HTTPHEADER => [
"Authorization: Bearer YOUR_API_KEY",
"Content-Type: application/json"
],
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => json_encode($payload),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 30
]);
$res = curl_exec($ch);
if ($res === false) { die("cURL error: " . curl_error($ch)); }
curl_close($ch);
echo $res;
?>
import fetch from "node-fetch";
const res = await fetch("https://bigodiamond.com/api/v1/orders", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
bigoid: "yehya_aali",
diamonds: 200,
client_ref: "ORD-12345"
})
});
console.log(await res.json());
Requests are signed and rate-limited. IP allow-listing available upon request.
How fast is the recharge? Usually instant; complex cases may take a few minutes.
Is the workflow official? Yes — via official reseller integration and verified operations.
Do you keep logs? Yes — orders are logged with timestamps for audits.