Fast & Secure BIGO LIVE Diamond Recharge

Official workflow, audited logging, and verified reseller path. Choose a package, redeem a code, or integrate programmatically.

Instant processing Official reseller flow Order logs 24/7 support
Top-up by package Redeem code Use the API
BIGO Diamond brand

Top-up by Select Package

Pick a ready package, fill your BIGO ID, and pay securely.

Choose a package
Prices are examples — adjust to your live pricing.

Redeem Code

Already have a code? Redeem it instantly.

API Integration with Official Reseller

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.

1) Create Top-up Order

# 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"
  }'

2) Check Order Status

# cURL
curl -X GET "https://bigodiamond.com/api/v1/orders/ORD-12345" \
  -H "Authorization: Bearer YOUR_API_KEY"

3) Redeem Code

# 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 Example

<?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;
?>

Node.js (fetch) Example

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.

FAQ

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.