Back to Home

Public API Documentation

Connect your automated systems to our panel.


1. Authorization

Every request must include your api_key. You can generate it in Settings > API Management.

2. Create Key

Endpoint for automated license generation:

POST / GET
https://panel-system.giize.com/api/generate-key
Param Req Description
api_key Yes, proceed! Your private API key.
game Yes, proceed! e.g., PUBG
duration Yes, proceed! Hours (5, 24, 168...)
max_devices No Default: 1

cURL Example

curl -X POST https://panel-system.giize.com/api/generate-key \
-d "api_key=YOUR_KEY" \
-d "game=PUBG" \
-d "duration=24"

Success JSON

{
    "success": true,
    "key": "1D_ABC123...",
    "remaining_balance": 90
}

Error Codes