This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Loaders & API Examples
Andreas edited this page May 16, 2024
·
7 revisions
Examples
- C# Console Loader by spawnfdgod (designed for the original panel)
- C# Windows Forms Loader by anditv21
C++ Loader by Jasmisek (designed for the original panel)- C++ Example by fyta__
- Discord Bot Example by anditv21
- JavaScript API-Example by anditv21
- Python API-Example by anditv21
- Typescript API-Example by Ghostboy
API-Usage
Note: User pass and hwid has to be sent in base64 format.
- Send user data in JSON format on call
- Usage:
api.php?user={username}&pass={password}&hwid={hwid}&key={key}
- Example:
api.php?user=admin&pass=YWRtaW4=&hwid=aHdpZA==&key=yes
Parameter | Type | Description | Required |
---|---|---|---|
user | string | Username | True |
pass | string | Password (base64encoded) | True |
hwid | string | HWID (base64encoded) | True |
key | string | Key from config file | True |
GET /api.php
There are already API examples for some popular languages.