cURL
curl --request GET \ --url https://www.lormex.xyz/api/overview
{ "items": [ { "slug": "service-one", "name": "Service One", "online": 1250 } ], "history": { "service-one": [ { "t": 1703750400000, "v": 1200 } ] } }
Get all services with 24-hour history data
Show History Object
Show Data Point
curl -X GET "https://www.lormex.xyz/api/overview"
{ "items": [ { "slug": "service-one", "name": "Service One", "online": 1250, "status": "online" }, { "slug": "service-two", "name": "Service Two", "online": 850, "status": "online" } ], "history": { "service-one": [ { "t": 1703750400000, "v": 1200 }, { "t": 1703754000000, "v": 1250 } ], "service-two": [ { "t": 1703750400000, "v": 800 }, { "t": 1703754000000, "v": 850 } ] } }