api.title
api.sub
vpn_key
api.nokey
api.nokey.sub
api.signin
dns
api.endpoint
POST
FormatJSON
MethodPOST
Rate limit500/min
list_alt
api.actions
api.actions.sub
services
List available services
keyaction add
Create a new order
keyactionservicelinkquantity status
Get status of one order
keyactionorder multi_status
Get status of multiple orders
keyactionorders refill
Request a refill
keyactionorder multi_refill
Request refill for multiple orders
keyactionorders refill_status
Get refill status
keyactionrefill cancel
Cancel orders
keyactionorders balance
Get user balance
keyaction
code
api.examples
api.example.add
curl -X POST "https://smmseen.com/api/v2" \
-d "key=YOUR_API_KEY" \
-d "action=add" \
-d "service=1" \
-d "link=https://instagram.com/example" \
-d "quantity=1000"
api.example.add
const res = await fetch('https://smmseen.com/api/v2', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: new URLSearchParams({
key: 'YOUR_API_KEY',
action: 'add',
service: 1,
link: 'https://instagram.com/example',
quantity: 1000
})
});
const json = await res.json();
api.example.add
$ch = curl_init('https://smmseen.com/api/v2');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
'key' => 'YOUR_API_KEY',
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/example',
'quantity' => 1000
]);
$res = json_decode(curl_exec($ch), true);
api.example.add
import requests
res = requests.post('https://smmseen.com/api/v2', data={
'key': 'YOUR_API_KEY',
'action': 'add',
'service': 1,
'link': 'https://instagram.com/example',
'quantity': 1000
})
data = res.json()
api.response
200 OK
{
"order": 23501
}