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

Account

GET
/api/account
This endpoint retrieves the account details of the currently authenticated user, including their name, username, available balance (saldo), and registration date.

Request

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

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://topup.haibubble.com/api/account' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Response Response Example
{
    "status": 200,
    "success": true,
    "message": "Account details retrieved successfully",
    "data": {
        "name": "Laurent Smith",
        "username": "laurent",
        "saldo": 479968,
        "registered_at": "2026-02-28T23:36:53+07:00"
    }
}
Modified at 2026-03-06 22:01:12
Previous
Getting started
Next
Product
Built with