Fetch Account Info

Verify your API Key and fetch account’s public data (nickname, UID, and avatar). This is the first step in the integration process.

Endpoint: POST https://bigodiamond.com/app/api/uinfo/xa92fd

Headers:
  • X-API-KEY: YOUR_KEY_HERE
  • Content-Type: application/x-www-form-urlencoded
Body: bigoid=dino_live

Example Request (cURL)

curl -X POST https://bigodiamond.com/app/api/uinfo/xa92fd \
-H "X-API-KEY: YOUR_API_KEY_HERE" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "bigoid=dino_live"

Example Response

{
  "success": true,
  "image": "https://bigodiamond.com/img/users/dino_avatar.png",
  "nickname": "Dino",
  "uid": "103874",
  "error": null
}

Submit Recharge Request

This endpoint will allow authorized clients to send a recharge request directly through the API.

Endpoint: POST https://bigodiamond.com/app/api/recharge/submit

Description: Accepts recharge amount, BIGO ID, and callback URL.
Documentation will be released soon.

Check Order Status

This endpoint will provide the current status of a submitted recharge order (Pending, Success, Failed, etc.).

Endpoint: POST https://bigodiamond.com/app/api/recharge/status

Description: Accepts order_id and returns full tracking details.

Each developer must use a unique API Key generated from their account settings.

You can generate or manage your key inside My Account → API Access.