BubbleShop
  1. API References
  • Guides
    • Introduction
    • Key Features
    • Getting started
  • API References
    • Account
      GET
    • Product
      GET
    • Service
      GET
    • Order
      POST
    • Status
      GET
    • Nickname
      GET
  • Webhook
    • Notifications
  • Information
    • List Game
    • Status Code
    • How To Create Signature
  1. API References

Nickname

GET
/api/nickname/{game_code}
This endpoint is used to retrieve and validate a player's in-game nickname using their User ID and for certain games that require it, their Zone. It is typically used to confirm the player's identity before processing a top-up or other game-related transactions. check the game code here.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://topup.haibubble.com/api/nickname/mobile-legends?user_id=123456789&zone=1234' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Response Response Example
{
    "status": 200,
    "success": true,
    "message": "Nickname retrieved successfully",
    "data": {
        "nickname": "Gula"
    }
}
Modified at 2026-03-06 23:07:06
Previous
Status
Next
Notifications
Built with