×

Speed SMM

Install for better experience

Speed SMM API Description 

The Speed SMM API is a fast, secure, and developer-friendly automation system designed to integrate SMM services directly into your website, application, or SMM panel. Using this API, you can automate essential functions such as placing orders, checking order status, fetching the service list, and checking your balance in real time.

Speed SMM API provides:

  • Instant order placement with fast response time

  • Real-time order status tracking

  • Automatic balance checking

  • Updated service list fetching

  • Reliable uptime and secure API key authentication

With Speed SMM API, you can run your SMM business on auto-pilot and deliver services to your customers instantly and efficiently. It is fully JSON-based, easy to integrate, and optimized for high-speed performance.

API

HTTP Method POST
API URL https://new.speedsmm.in/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
<