API Endpoints

All endpoints return JSON responses. Request format: GET application/json

GET Check Balance

https://mailmart.shop/api/user/balance?clientKey=your_clientKey

Request Parameters

clientKey string required
Your Api key for authentication
{
  "clientKey": "cc9c18d3e263515xxxxxxx6a7125eecc078618f"
}
{
  "code": 0,
  "data": 0.02,    // Your account balance
  "success": true
}

GET Get Mail Account Inventory

https://mailmart.shop/api/mail/getStock
  "code": 0,
  "data": [
    {
      "updateTime": "2023-11-28 10:39:54",
      "createTime": "2023-11-28 10:39:50",
      "id": "1",
      "type": "hotmail",
      "price": 0.003,
      "live": "1-3 Hours",
      "access": "0",
      "stock": 7551
    },
    {
      "updateTime": "2023-11-28 10:40:06",
      "createTime": "2023-11-28 10:40:03",
      "id": "2",
      "type": "outlook",
      "price": 0.003,
      "live": "1-3 Hours",
      "access": "0",
      "stock": 3902
    },
    {
      "updateTime": "2023-12-11 10:24:48",
      "createTime": "2023-12-11 10:24:43",
      "id": "3",
      "type": "hotmail Trusted",
      "price": 0.04,
      "live": "3-6+ Months",
      "access": "1",
      "stock": 46755
    },
    {
      "updateTime": "2023-12-11 10:24:48",
      "createTime": "2023-12-11 10:24:43",
      "id": "4",
      "type": "outlook Trusted",
      "price": 0.04,
      "live": "3-6+ Months",
      "access": "1",
      "stock": 22885
    }
  ],
  "success": true
}

GET Get Mail Accounts

https://mailmart.shop/api/mail/getMail?clientKey=your_clientKey&mailType=outlook/hotmail/hotmail%20Trusted/outlook%20Trusted&quantity=the_quantity_you_want

Request Parameters

clientKey string required
Your Api key for authentication
mailType string required
Mail type to purchase. Available options: 'outlook', 'hotmail', 'hotmail Trusted', 'outlook Trusted'
quantity integer required
Number of email accounts to purchase, positive integers only
{
  "clientKey": "cc9c18d3e263515xxxxxxx6a7125eecc078618f",
  "mailType": "hotmail",  // outlook, hotmail Trusted, outlook Trusted
  "quantity": 1
}
{
  "code": 0,
  "data": [
    "Account:Password:Refresh_token:Client_id"  // Colon-separated data
  ],
  "success": true
}
{
  "code": 0,
  "data": [
    "[email protected]:KOIG6zgdk7:M.C521_BAY.0.U.-CixR1fgjuI2iV7*zzHgB!7Peg72xxkrfpdIAqdwp4:8b4ba9dd-3ea5-4e5f-87f1-ddba2230dck2"
  ],
  "success": true
}