API Documentation
Integrate our high-speed SMM services directly into your platform via RESTful requests.
Your Authentication Key
POST
https://smmglob.com/api/v2
Service List Endpoint
action: services| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: services |
Example Response (JSON)
200 OK
[
{
"service": 1,
"name": "Instagram Followers [Max: 10K] [Instant]",
"type": "Default",
"category": "Instagram Followers",
"rate": "0.90",
"min": "50",
"max": "10000",
"dripfeed": false,
"refill": true,
"cancel": true,
"description": "High quality followers. 30 days refill."
}
]
Create Order Endpoint
action: add| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: add |
| service | The Service ID you want to order |
| link | Target URL or profile link |
| quantity | Amount to be delivered |
Example Response (JSON)
200 OK
{
"order": 23501
}
Order Status Endpoint
action: status| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: status |
| order | The specific Order ID |
Example Response (JSON)
200 OK
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
Multiple Status Endpoint
action: status
Pass multiple order IDs separated by commas to fetch bulk status efficiently.
| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: status |
| orders | Comma separated Order IDs (e.g. 1,2,3) |
Example Response (JSON)
200 OK
{
"1": {
"charge": "0.27819",
"status": "Partial",
"remains": "157"
},
"10": {
"error": "Incorrect order ID"
}
}
Refill Order Endpoint
action: refill| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: refill |
| order | The specific Order ID |
Example Response (JSON)
200 OK
{
"refill": "1"
}
User Balance Endpoint
action: balance| Parameter | Description |
|---|---|
| key | Your unique API Key |
| action | Method name: balance |
Example Response (JSON)
200 OK
{
"balance": "100.84",
"currency": "USD"
}