Want to start sending requests? Create a free account to get your personal
Get API key
YOUR_API_KEY.Connection
| Field | Value |
|---|---|
| HTTP Method | POST |
| Endpoint | https://smmfree.com/api/v2 |
| API Key | YOUR_API_KEY |
| Response format | JSON |
Endpoints
| Action | Description |
|---|---|
services | List all available services with rate, min, max |
add | Place a new order (service, link, quantity) |
status | Check status of one or multiple orders |
balance | Get current account balance |
refill | Request a refill for an existing order |
cancel | Cancel a pending order |
Quick start
curl -X POSThttps://smmfree.com/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
$post = http_build_query([
'key' => 'YOUR_API_KEY',
'action' => 'add',
'service'=> 1,
'link' => 'https://example.com/profile',
'quantity' => 1000
]);
$ch = curl_init('https://smmfree.com/api/v2');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec($ch);
echo $res;
import requests
r = requests.post('https://smmfree.com/api/v2', data={
'key': 'YOUR_API_KEY',
'action': 'add',
'service': 1,
'link': 'https://example.com/profile',
'quantity': 1000,
})
print(r.json())
Example: Service list response
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true
}
]
Add order parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | add |
service | Service ID |
link | Target link |
quantity | Needed quantity |
Some services support extra fields (comments, runs, interval, username, min, max, posts, delay, expiry, hashtag). See the in-app docs after sign-up for full details.
Order status response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
User balance response
{
"balance": "100.84292",
"currency": "USD"
}
All requests require a key parameter. Responses are JSON. Errors return an error field.