HTTP MethodPOST API URLhttps://lunasmm.net/api/v2 API Key Hesap Response FormatJSON
Service List ParametersDescription
KeyYour API Key ActionServices
Example Response
                                    
                                        [
                                        {
                                        "Service": 1,
                                        "Name": "Followers",
                                        "Type": "Default",
                                        "Category": "First Category",
                                        "Rate": "0.90",
                                        "Min": "50",
                                        "Max": "10000",
                                        "Refill": True,
                                        "Cancel": True
                                        },
                                        {
                                        "Service": 2,
                                        "Name": "Comments",
                                        "Type": "Custom Comments",
                                        "Category": "Second Category",
                                        "Rate": "8",
                                        "Min": "10",
                                        "Max": "1500",
                                        "Refill": False,
                                        "Cancel": True
                                        }
                                        ]
                                    
                                
Add Order

Example Response
                                    
                                        {
                                        "Order": 23501
                                        }
                                    
                                
Order Status ParametersDescription
KeyYour API Key ActionStatus OrderOrder ID
Example Response
                                    
                                        {
                                        "Charge": "0.27819",
                                        "Start_Count": "3572",
                                        "Status": "Partial",
                                        "Remains": "157",
                                        "Currency": "USD"
                                        }
                                    
                                
Multiple Orders Status ParametersDescription
KeyYour API Key ActionStatus OrdersOrder IDs (Separated by Emre)
Example Response
                                    
                                        {
                                        "1": {
                                        "Charge": "0.27819",
                                        "Start_Count": "3572",
                                        "Status": "Partial",
                                        "Remains": "157",
                                        "Currency": "USD"
                                        },
                                        "10": {
                                        "Error": "Incorrect Order ID"
                                        },
                                        "100": {
                                        "Charge": "1.44219",
                                        "Start_Count": "234",
                                        "Status": "In Progress",
                                        "Remains": "10",
                                        "Currency": "USD"
                                        }
                                        }
                                    
                                
Create Refill ParametersDescription
KeyYour API Key ActionRefill OrderOrder ID
Example Response
                                    
                                        {
                                        "Refill": "1"
                                        }
                                    
                                
Create Multiple Refill ParametersDescription
KeyYour API Key ActionRefill OrdersOrder IDs (Separated by Emre)
Example Response
                                    
                                        [
                                        {
                                        "Order": 1,
                                        "Refill": 1
                                        },
                                        {
                                        "Order": 2,
                                        "Refill": 2
                                        },
                                        {
                                        "Order": 3,
                                        "Refill": {
                                        "Error": "Incorrect Order ID"
                                        }
                                        }
                                        ]
                                    
                                
Get Refill Status ParametersDescription
KeyYour API Key ActionRefill_Status RefillRefill ID
Example Response
                                    
                                        {
                                        "Status": "Completed"
                                        }
                                    
                                
Get Multiple Refill Status ParametersDescription
KeyYour API Key ActionRefill_Status RefillsRefill IDs (Separated by Emre)
Example Response
                                    
                                        [
                                        {
                                        "Refill": 1,
                                        "Status": "Completed"
                                        },
                                        {
                                        "Refill": 2,
                                        "Status": "Rejected"
                                        },
                                        {
                                        "Refill": 3,
                                        "Status": {
                                        "Error": "Refill Not Found"
                                        }
                                        }
                                        ]
                                    
                                
Create Cancel ParametersDescription
KeyYour API Key ActionCancel OrdersOrder IDs (Separated by Emre)
Example Response
                                    
                                        [
                                        {
                                        "Order": 9,
                                        "Cancel": {
                                        "Error": "Incorrect Order ID"
                                        }
                                        },
                                        {
                                        "Order": 2,
                                        "Cancel": 1
                                        }
                                        ]
                                    
                                
User Balance ParametersDescription
KeyYour API Key ActionBalance
Example Response
                                    
                                        {
                                        "Balance": "100.00",
                                        "Currency": "USD"
                                        }
                                    
                                
Example of PHP Code