Activation Panel API (v1.81)

Last updated: August 13, 2024

Getting Started

Every user on the activation panel receives a unique API KEY. Use this key to manage your devices and subscriptions.

API Endpoints

Add New Device (M3U, MAG, Protocol)

https://activationpanel.net/api/api.php?action=new&type=[m3u|mag|protocol]&sub=[1,3,6,12,99]&pack=[Package ID|all]&api_key=[API_KEY]&mac=[MAC Address if MAG]¬e=[Optional Note]

Renew Subscription (M3U & MAG)

https://activationpanel.net/api/api.php?action=renew&type=[m3u|mag]&sub=[1,3,6,12]&api_key=[API_KEY]&username=[M3U Username]&password=[M3U Password]&mac=[MAC Address if MAG]

View Packages

https://activationpanel.net/api/api.php?action=bouquet&api_key=[API_KEY]

Get Device Information

https://activationpanel.net/api/api.php?action=device_info&api_key=[API_KEY]&username=[M3U Username]&password=[M3U Password]&mac=[MAC Address if MAG]

Get Reseller Information

https://activationpanel.net/api/api.php?action=reseller_info&api_key=[API_KEY]

Parameters Explained

  • action: Type of request (new, renew, bouquet, device_info, reseller_info).
  • type: Device type (m3u, mag, protocol).
  • sub: Subscription duration (1, 3, 6, 12 months, 99 for demo).
  • pack: Package ID from the packages list or all for everything.
  • mac: MAC address (only for MAG devices).
  • note: Optional notes about the device.
  • username/password: Required for renewing M3U devices or checking their details.
  • api_key: Your unique API key.

Response Example

{
    "status": "true",
    "user_id": "5000",
    "message": "Operation successful",
    "url": "http://example-link.com"
}