<style type="text/css"> /* Elite SMM Panel Header */ header { background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); color: #fff; padding: 15px 30px; font-family: 'Poppins', sans-serif; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid #ffcc00; } header .logo { font-size: 22px; font-weight: 700; letter-spacing: 1px; } header nav ul { list-style: none; display: flex; gap: 20px; } header nav ul li a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; } header nav ul li a:hover { color: #ffcc00; } </style>

API

HTTP Method POST
API URL https://styshopbd.com/api/v2
Return format JSON

Service List

parameters Explanation
key Your API Key
action services

Sample return

[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000"
    },
    {
        "service": 2,
        "name": "Comments",
        "type": "Custom Comments",
        "category": "Second Category",
        "rate": "8",
        "min": "10",
        "max": "1500"
    }
]

New order

Parameter Explanation
key Your API Key
action add
service Servis ID
link Service connection
quantity Quantity
runs (optionally) Runs to deliver
interval (optionally) Interval in minutes

Sample return

{
    "order": 23501
}

Order status

Parameter Explanation
key Your API Key
action status
order Order ID

Sample return

{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}

User balance

Parameter Explanation
key Your API Key
action balance

Sample return

{
    "balance": "100.84292",
    "currency": "USD"
}
Sample PHP file
<script> // Elite SMM Panel Footer document.addEventListener("DOMContentLoaded", function() { const footer = document.createElement("footer"); footer.style.background = "#0f2027"; footer.style.color = "#fff"; footer.style.padding = "20px"; footer.style.textAlign = "center"; footer.style.fontFamily = "Poppins, sans-serif"; footer.style.borderTop = "3px solid #ffcc00"; footer.innerHTML = ` <p>&copy; ${new Date().getFullYear()} Elite SMM Panel. All Rights Reserved.</p> <p>Powered by <strong>Elite SMM</strong></p> `; document.body.appendChild(footer); }); </script>