Introduction
The GamePanelX V3 API provides a RESTful interface for managing game servers and users programmatically. You can use the API to automate server provisioning, manage users, and control server operations.Base URL
The API is accessible at:API Structure
The GamePanelX API uses a class-based structure with the following components:- class: The resource type you want to interact with (
serversorusers) - action: The operation you want to perform (
create,delete,restart, etc.) - key: Your API authentication key
Available Resources
The API currently supports two main resource classes:Servers API
Create, manage, and control game servers
Users API
Create, update, and delete user accounts
Request Methods
The API accepts both GET and POST requests. For security reasons, POST is recommended for all operations.Response Format
API responses are returned as plain text messages:- Success: Returns
successor a success message - Error: Returns an error message describing the issue
The API uses simple text responses rather than JSON. Parse the response text to determine success or failure.
Error Handling
Common error responses include:| Error Message | Cause |
|---|---|
No API key specified (&key=) | Missing API key parameter |
Invalid API key specified! | Incorrect API key |
No class given (&class=) | Missing class parameter |
Invalid class given | Invalid class name (must be servers or users) |
No action (&action=) given | Missing action parameter |
Unknown API action | Invalid action for the specified class |
Rate Limiting
Quick Start Example
Here’s a simple example to get you started:Next Steps
Authentication
Learn how to obtain and use your API key
Server Endpoints
Explore server management endpoints