CubeMMO Docs
  • API Documents
    • Check balance
    • Accounts
    • Purchase
  • Mail iCloud
    • iCloud Email
Powered by GitBook
On this page
  • Endpoints
  • Request Parameters
  • Response
  1. API Documents

Accounts

Retrieve a list of account available.

Endpoints

Request
GET https://cubemmo.net/api/account_type?api_key={api_key}

Request Parameters

Header Key
Value
Required
Description

api_key

{api_key}

true

The API key provided to authenticate the user. Replace {apiKey} with your actual API key.

Response

The API returns a JSON object with the following structure:

Success Response (200)
{
    "success": true,
    "message": "Success.",
    "data": [
        {
            "id": 1,
            "name": "HotMail NEW",
            "price": "40",
            "quantity": 21434
        },
        {
            "id": 2,
            "name": "OutLook NEW",
            "price": "40",
            "quantity": 0
        },
        {
            "id": 3,
            "name": "Hotmail TRUSTED",
            "price": "450",
            "quantity": 17
        },
        {
            "id": 4,
            "name": "Outlook TRUSTED",
            "price": "450",
            "quantity": 0
        },
        {
            "id": 5,
            "name": "Mail iCloud",
            "price": "500",
            "quantity": 4498
        }
    ]
}
Internal Server Error (500)
{
    "success" : false,
    "message":"Error."
}
Invalid API Key (401)
{
    "success": false,
    "message":"Invalid API Key"
}
PreviousCheck balanceNextPurchase

Last updated 2 months ago