Endpoints
- Test API
- Group API
- Package API
- Country API
- Customer API
- Invoice API
- VPN API
VPN API
Get Server API
POST
/
vpn
/
servers
/
get
Copy
curl --request POST \
--url https://demo.onlinebillingform.com/api/v1/vpn/servers/get \
--header 'token: <api-key>'
Copy
{
"success": true,
"vpn_server": {
"server_name": "UK2",
"ip_address": "192.168.2.5",
"ssh_port": 22,
"ssh_username": "root",
"max_connections": 0,
"vpn_type": "openVPN",
"flag_countries": "NL",
"status_online": 0,
"vpn_details": null
}
}
Authorizations
Query Parameters
Examples:
12
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://demo.onlinebillingform.com/api/v1/vpn/servers/get \
--header 'token: <api-key>'
Copy
{
"success": true,
"vpn_server": {
"server_name": "UK2",
"ip_address": "192.168.2.5",
"ssh_port": 22,
"ssh_username": "root",
"max_connections": 0,
"vpn_type": "openVPN",
"flag_countries": "NL",
"status_online": 0,
"vpn_details": null
}
}
Assistant
Responses are generated using AI and may contain mistakes.