Hotmail & Outlook Accounts

Instant delivery • API available • 24/7 automated service

Available Products

Auto-updating every 10s

Top-up Bonus Program

+5%

$250 - $499

+10%

$500 - $1,999

+15%

$2,000+

Dashboard

Current Balance

$

Total Purchases

Total Spent

$

Total Deposited

$

Purchase History

Top-up History

API Documentation

Your API Key

Keep your API key secret. Do not share it publicly.

Base URL:

https://1.luckron.com//api.php

GET CHECK BALANCE

Endpoint:

https://1.luckron.com//api.php?action=balance&api_key=YOUR_API_KEY

Example Response:

{
  "success": true,
  "balance": "125.4500"
}

GET ACCOUNT CODE & INSTOCK

Endpoint:

https://1.luckron.com//api.php?action=instock&api_key=YOUR_API_KEY

Example Response:

{
  "success": true,
  "data": {
    "hotmail": 1250,
    "outlook": 890,
    "hotmail_trusted": 45,
    "outlook_trusted": 32
  }
}

GET PURCHASE (Method 1)

Endpoint:

https://1.luckron.com//api.php?action=purchase&api_key=YOUR_API_KEY&type=hotmail&count=10

Parameters:

  • api_key : Your API key
  • type : Product type (hotmail, outlook, hotmail_trusted, outlook_trusted)
  • count : Number of accounts to purchase

Example Response:

{
  "success": true,
  "message": "Purchase successful",
  "data": [
    {
      "login": "user1@hotmail.com",
      "password": "Pass123",
      "refresh_token": "token123..."
    }
  ],
  "newBalance": "115.4300"
}

POST PURCHASE (Method 2 - Recommended)

Endpoint:

https://1.luckron.com//api.php

Form Data / POST Fields:

  • action : purchase
  • api_key : Your API key
  • type : The product type (e.g., hotmail)
  • count : The number of accounts to buy

cURL Example:

curl -X POST https://1.luckron.com//api.php \
  -d "action=purchase" \
  -d "api_key=YOUR_API_KEY" \
  -d "type=hotmail" \
  -d "count=10"

Code Examples

PHP Example

<?php
$api_key = 'YOUR_API_KEY';
$url = 'https://1.luckron.com//api.php';

$data = [
    'action' => 'purchase',
    'api_key' => $api_key,
    'type' => 'hotmail',
    'count' => 10
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
curl_close($ch);

$result = json_decode($response, true);
if ($result['success']) {
    foreach ($result['data'] as $account) {
        echo $account['login'] . ':' . $account['password'] . "\n";
    }
}
?>

Python Example

import requests

api_key = 'YOUR_API_KEY'
url = 'https://1.luckron.com//api.php'

data = {
    'action': 'purchase',
    'api_key': api_key,
    'type': 'hotmail',
    'count': 10
}

response = requests.post(url, data=data)
result = response.json()

if result['success']:
    for account in result['data']:
        print(f"{account['login']}:{account['password']}")

JavaScript Example

const apiKey = 'YOUR_API_KEY';
const url = 'https://1.luckron.com//api.php';

const formData = new FormData();
formData.append('action', 'purchase');
formData.append('api_key', apiKey);
formData.append('type', 'hotmail');
formData.append('count', 10);

fetch(url, {
    method: 'POST',
    body: formData
})
.then(response => response.json())
.then(result => {
    if (result.success) {
        result.data.forEach(account => {
            console.log(`${account.login}:${account.password}`);
        });
    }
});

Error Codes

Error Description
Invalid API key The provided API key is invalid or expired
Insufficient balance Your account balance is too low for this purchase
Invalid product type The requested product type doesn't exist
Out of stock Not enough stock available for your request
Invalid quantity The count parameter must be a positive integer

Admin Panel

Email Balance Role Joined Actions