API

Integrate JustAnotherPanel.live into your own panel, store or automation. The API accepts JSON over HTTPS POST and follows the same request format used across the industry, so existing reseller integrations work with minimal changes.

Endpoint

POST https://justanotherpanel.live/api/public/v2

Content-Type: application/json · authentication happens with the key field in the request body.

Sign in to generate an API key. Keys are shown once and stored hashed, so they cannot be recovered later — only replaced.

Actions

services

List every service available to your account with prices and limits.

{
  "key": "YOUR_API_KEY",
  "action": "services"
}

add

Place a new order.

{
  "key": "YOUR_API_KEY",
  "action": "add",
  "service": 1234,
  "link": "https://instagram.com/p/xyz",
  "quantity": 1000
}

status

Read the status, start count, remains and charge of one order.

{
  "key": "YOUR_API_KEY",
  "action": "status",
  "order": 98765
}

refill

Request a refill for an eligible completed order.

{
  "key": "YOUR_API_KEY",
  "action": "refill",
  "order": 98765
}

balance

Read your current wallet balance and currency.

{
  "key": "YOUR_API_KEY",
  "action": "balance"
}

Errors and limits

  • Every response is JSON. Failures include an error field with a readable message.
  • An invalid or revoked key returns HTTP 401.
  • Orders are validated against the service minimum, maximum and your wallet balance.
  • Repeat an identical request safely by sending the same idempotency value.