Developer Documentation

API Reference.

Standardized SMM Panel API for seamless integration.

HTTP Method

POST

API URL

https://neriopanel.com/api/v2

Quick Start

01

Get Your API Key

Sign up and generate your API key from the account dashboard.

02

Make a Request

Send POST requests with your key and action parameters.

03

Handle Response

Parse JSON responses and handle errors gracefully.

POST

Services

Get a list of all available services.

Parameters

key*
string

Your API key

action*
string

Value: "services"

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=services"

Example Response

[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true,
        "cancel": true
    }
]
POST

Add Order

Create a new order for a specific service.

Parameters

key*
string

Your API key

action*
string

Value: "add"

service*
integer

Service ID

link*
string

Link to page

quantity*
integer

Needed quantity

runs
integer

Runs to deliver (drip-feed)

interval
integer

Interval in minutes (drip-feed)

Example Request

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"

Example Response

{
    "order": 23501
}
POST

Order Status

Check the status of a single order.

Parameters

key*
string

Your API key

action*
string

Value: "status"

order*
integer

Order ID

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "order=23501"

Example Response

{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
POST

Multiple Status

Check the status of multiple orders at once.

Parameters

key*
string

Your API key

action*
string

Value: "status"

orders*
string

Order IDs (separated by comma, up to 100 IDs)

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "orders=23501,23502,23503"

Example Response

{
    "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"
    }
}
POST

User Balance

Retrieve your current account balance.

Parameters

key*
string

Your API key

action*
string

Value: "balance"

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

Example Response

{
    "balance": "100.84292",
    "currency": "USD"
}
POST

Refill Order

Request a refill for an eligible order.

Parameters

key*
string

Your API key

action*
string

Value: "refill"

order*
integer

Order ID

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=refill" \
  -d "order=23501"

Example Response

{
    "refill": 1
}
POST

Refill Status

Check the status of a refill request.

Parameters

key*
string

Your API key

action*
string

Value: "refill_status"

refill*
integer

Refill ID

Example Request

curl -X POST https://neriopanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=refill_status" \
  -d "refill=1"

Example Response

{
    "status": "Completed"
}

Error Codes

400Bad RequestInvalid parameters or missing required fields.
401UnauthorizedInvalid or missing API key.
403ForbiddenAccess denied for this resource.
404Not FoundThe requested resource does not exist.
429Too Many RequestsRate limit exceeded. Please slow down.
500Internal Server ErrorSomething went wrong on our end.

Rate Limits

Per Minute
100

requests per minute

Per Hour
3,000

requests per hour

Ready to integrate?

Start building with our API today. Create an account to get your API key.

Get Started