Connect your application with our platform and automate common operations in a secure, documented and scalable way.
Petition example
Check active account services
curl -X GET https://api.swpanel.com/v2026/services \
-H "Authorization: Bearer API_KEY" \
-H "Accept: application/json"
Get information about the active products and services in your account.
Create, retrieve, update, and delete services securely through the API.
Execute recurring operations from your own system or internal panel.
Connect the API with CRMs, ERPs, or your own processes and start integrating SWPanel.
Log in to your account or create a new one.
Generate your personal API Key from the SWPanel.
Use the endpoints available in our API.
Integrate the responses received and manage them according to the flow of your application.
curl -X GET https://api.swpanel.com/v2026/services \
-H "Authorization: Bearer API_KEY" \
-H "Accept: application/json"
$response = Http::withToken('API_KEY')
->acceptJson()
->get('https://api.swpanel.com/v2026/services');
$data = $response->json();
const response = await fetch(
'https://api.swpanel.com/v2026/services',
{
headers: {
Authorization: 'Bearer API_KEY',
Accept: 'application/json'
}
}
);
const data = await response.json();
To explore use cases and practical examples, visit our GitHub repository.