Get Service Details
Retrieve detailed information about a specific service by its slug.
Path Parameters
The unique identifier (slug) of the service
Response
Unique identifier for the service
Display name of the service
Current online player count
Current status of the service
Description of the service
Example Request
curl -X GET "https://www.lormex.xyz/api/services/example-slug"
Example Response
{
"slug": "example-slug",
"name": "Example Service",
"online": 1250,
"status": "online",
"description": "A great example service"
}
Error Responses
Error message when service is not found
{
"slug": "example-slug",
"name": "Example Service",
"online": 1250,
"status": "online"
}