☁️API
Get your API key
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
Make your first request
To make your first request, send an authenticated request to the pets endpoint. This will create a pet, which is nice.
Service list
POST https://smm.sec-nine.com/api/v2
Retrieves the current service list.
Request Body
key*
string
Your API Key
action*
string
services
[
{
"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
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
add
service*
int
Service ID
link*
string
Link to page
quantity*
int
Needed quantity
runs
string
Runs to deliver
interval
string
Interval in minutes
Order status
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
status
order*
int
Order ID
Multiple orders status
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
status
orders*
string
(separated by a comma, up to 100 IDs)
Create refill
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
refill
order*
int
Order ID
Create multiple refill
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
refill
orders*
string
Order IDs (separated by a comma, up to 100 IDs)
Get refill status
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
refill_status
refill*
int
Refill ID
Get multiple refill status
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
refill_status
refills*
string
Refill IDs (separated by a comma, up to 100 IDs)
Create cancel
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
cancel
orders*
string
Order IDs (separated by a comma, up to 100 IDs)
User balance
POST https://smm.sec-nine.com/api/v2
Request Body
key*
string
Your API Key
action*
string
balance
Example of Codes
Last updated