All-in-One Merchant Protocol
Private API Key
Callback URL (Webhook)
Your merchant account is monitored 24/7 by the Lumic nodes.
https://lumic-gateway.com/?wallet=YOUR_PROXY&amount=10.00&order_id=123
$key = "YOUR_API_KEY";
if($_SERVER['HTTP_X_LUMIC_API_KEY'] !== $key) die("Unauthorized");
$data = json_decode(file_get_contents("php://input"), true);
if($data['status'] === 'success') {
// Process Order: $data['customer_order_id']
}