Standardized SMM Panel API for seamless integration.
https://neriopanel.com/api/v2Sign up and generate your API key from the account dashboard.
Send POST requests with your key and action parameters.
Parse JSON responses and handle errors gracefully.
Get a list of all available services.
Your API key
Value: "services"
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=services"[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true,
"cancel": true
}
]Create a new order for a specific service.
Your API key
Value: "add"
Service ID
Link to page
Needed quantity
Runs to deliver (drip-feed)
Interval in minutes (drip-feed)
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=add" \
-d "service=1" \
-d "link=https://example.com/post" \
-d "quantity=1000"{
"order": 23501
}Check the status of a single order.
Your API key
Value: "status"
Order ID
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=status" \
-d "order=23501"{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}Check the status of multiple orders at once.
Your API key
Value: "status"
Order IDs (separated by comma, up to 100 IDs)
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=status" \
-d "orders=23501,23502,23503"{
"23501": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
},
"23502": {
"charge": "0.50000",
"start_count": "1000",
"status": "Completed",
"remains": "0",
"currency": "USD"
}
}Retrieve your current account balance.
Your API key
Value: "balance"
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=balance"{
"balance": "100.84292",
"currency": "USD"
}Request a refill for an eligible order.
Your API key
Value: "refill"
Order ID
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=refill" \
-d "order=23501"{
"refill": 1
}Check the status of a refill request.
Your API key
Value: "refill_status"
Refill ID
curl -X POST https://neriopanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=refill_status" \
-d "refill=1"{
"status": "Completed"
}requests per minute
requests per hour
Start building with our API today. Create an account to get your API key.
Get Started