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/v2Content-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.
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"
}error field with a readable message.