All-in-One Merchant Protocol
Your Private API Key (Click to Copy)
Callback URL (Webhook)
Use the integration guide to start accepting USDT payments on your platform in minutes.
Redirect your users to the gateway with your Proxy Address and order details.
Example URL Structure:
https://your-lumic-domain.com/?wallet=YOUR_PROXY&amount=15.00&order_id=ORD_99
// Secure Verification Script
$key = "YOUR_LMC_API_KEY"; // From Dashboard
$headers = getallheaders();
if($headers['X-Lumic-API-Key'] !== $key) {
die("Invalid Auth");
}
$data = json_decode(file_get_contents("php://input"), true);
if ($data['status'] === 'success') {
$order = $data['order_id'];
// Update Your DB
echo "OK";
}