Skip to main content
GET
https://www.lormex.xyz
/
api
/
metrics
/
all
All Metrics
curl --request GET \
  --url https://www.lormex.xyz/api/metrics/all
{
  "metrics": {
    "service-one": {
      "top24": 5420,
      "topAll": 12850
    },
    "service-two": {
      "top24": 2100,
      "topAll": 8500
    }
  }
}

All Metrics

Retrieve peak metrics for all services in a single request. Optimized for dashboard views.

Response

metrics
object
Object with service slugs as keys

Example Request

curl -X GET "https://www.lormex.xyz/api/metrics/all"

Example Response

{
  "metrics": {
    "service-one": {
      "top24": 5420,
      "topAll": 12850
    },
    "service-two": {
      "top24": 2100,
      "topAll": 8500
    },
    "service-three": {
      "top24": 890,
      "topAll": 3200
    }
  }
}
This endpoint uses no-store caching to ensure real-time data. Use sparingly to avoid unnecessary load.
{
  "metrics": {
    "service-one": {
      "top24": 5420,
      "topAll": 12850
    },
    "service-two": {
      "top24": 2100,
      "topAll": 8500
    }
  }
}