Skip to Content
Reseller API

API Documentation

Automate service listing, order creation, and balance checks via your own panel, bot, or software.

HTTP Method POSTGET
Endpoint https://norexiar.lin.saviorhost.com/api/v2
Authentication

The key and action parameters must be sent with every request.

services

Service List

Lists active services, category details, pricing, and quantity limits.

Example Request

POST https://norexiar.lin.saviorhost.com/api/v2
key=YOUR_API_KEY
action=services

Example Response

[
  {
    "service": "1",
    "name": "Instagram Followers",
    "type": "Default",
    "category": "Instagram",
    "rate": "12.5000",
    "min": "100",
    "max": "50000"
  }
]
add

Create Order

Creates a new order with link and quantity for the selected service.

Example Request

POST https://norexiar.lin.saviorhost.com/api/v2
key=YOUR_API_KEY
action=add
service=1
link=https://instagram.com/username
quantity=1000

Example Response

{
  "order": 1453
}
status

Order Status

Returns charge, start count, remaining amount, and status details of the given order ID.

Example Request

POST https://norexiar.lin.saviorhost.com/api/v2
key=YOUR_API_KEY
action=status
order=1453

Example Response

{
  "charge": "12.5000",
  "start_count": "10500",
  "status": "In_progress",
  "remains": "500",
  "currency": "TRY"
}
balance

Check Balance

Returns current account balance and currency for the provided API key.

Example Request

POST https://norexiar.lin.saviorhost.com/api/v2
key=YOUR_API_KEY
action=balance

Example Response

{
  "balance": 250.75,
  "currency": "TRY"
}