Skip to main content
GET
https://www.lormex.xyz
/
api
/
services
List Services
curl --request GET \
  --url https://www.lormex.xyz/api/services
{
  "items": [
    {
      "slug": "example-service",
      "name": "Example Service",
      "online": 1250,
      "status": "online"
    }
  ],
  "page": 1,
  "pageSize": 10,
  "total": 45
}

List Services

Retrieve a paginated list of all available services with their current status and online counts.

Query Parameters

page
integer
default:"1"
Page number for pagination (1-indexed)
pageSize
integer
default:"30"
Number of items per page
fast
string
default:"1"
Set to “0” to disable fast mode caching. Fast mode uses cached data with 30s TTL.

Response

items
array
Array of service objects
page
integer
Current page number
pageSize
integer
Number of items per page
total
integer
Total number of services

Example Request

curl -X GET "https://www.lormex.xyz/api/services?page=1&pageSize=10"

Example Response

{
  "items": [
    {
      "slug": "example-service",
      "name": "Example Service",
      "online": 1250,
      "status": "online"
    }
  ],
  "page": 1,
  "pageSize": 10,
  "total": 45
}
{
  "items": [
    {
      "slug": "example-service",
      "name": "Example Service",
      "online": 1250,
      "status": "online"
    }
  ],
  "page": 1,
  "pageSize": 10,
  "total": 45
}