Fetch BIGO Account Information
This endpoint retrieves the public profile information of a BIGO Live account.
It verifies your API key and returns BIGO account identity data required before submitting a recharge request.
The response includes username, UID, nickname, avatar, statistics, and public profile information.
The following two fields are required for the next API step:
- bigo_id — BIGO ID
- bigo_uid — BIGO unique numeric identifier
Endpoint
Replace
GET https://bigodiamond.com/v1/identity/bigo/{bigo_id}
Replace
{bigo_id} with the BIGO username.
Headers
X-API-Key: YOUR_API_KEY_HEREAccept: application/json
Example Request (cURL)
curl --request GET \
https://bigodiamond.com/v1/identity/bigo/yehya_aali \
--header "X-API-Key: YOUR_API_KEY_HERE" \
--header "Accept: application/json"
Example Response
{
"status": "ok",
"data": {
"status": "success",
"source": "live",
"bigo_user": {
"bigo_id": "yehya_aali",
"bigo_uid": "502030637",
"bigo_name": "يحيى😈 ᶜᵃ",
"bigo_avatar": "http://esx.bigo.sg/eu/live_pic/lux/1vqd0n00y4Xlsjq1ESjCZ_2.jpg",
"bigo_gender": "male",
"bigo_age": 20,
"bigo_register_time": "2021-02-01 21:18:11",
"bigo_follow_count": 188,
"bigo_fans_count": 2097
}
}
}
Important
- The values
bigo_idandbigo_uidmust be saved. - They are required for the recharge API request.
- Always rely on
bigo_uidfor system operations.
Try API
You can test the API directly from this page.
Backend Activity
Waiting for request...
API Response
Response will appear here
You can generate or manage your key inside My Account → API Access