HomeJavaModsAH StatusAPI
AH StatusAPI
ModsJava

AH StatusAPI

by MeisterAH_ · on Modrinth

Host a powerful, secure REST API on your own Server. Best for building your own Dashboard - For Devs and Admins

⬇ Download on Modrinth
AH StatusAPI — screenshot 1

AH StatusAPI

Overview

ServerStatusAPI is a powerful secure monitoring plugin for Minecraft servers that collects comprehensive performance data and provides it through a REST API. It allows server administrators to monitor key metrics in real-time and analyze historical data without impacting server performance.

Note that the Plugin is still in beta.

In order to work correctly the Server need to be restarted daily once.

The Ping currently only works if a player is online.

Features

Coming Soon!

Configuration

Before you can start using it, you need to specify the port in the config.yml on which the Server will run the API. (perhaps you also need to configure your firewall)

After that you can access your API here:

http://serverip:port/metrics/current

API Endpoints

Example data for each Endpoint

/metrics/current

{
  "cpuUsage": 0.06,
  "uptimeMillis": 76504272,
  "memory": {
    "max": 2147483648,
    "used": 716963360
  },
  "maxPlayers": 100,
  "onlinePlayers": 0,
  "tps": 20.0000152480116,
  "ping": 0,
  "players": [],
  "serverAddress": "serverip",
  "loadedChunks": 147,
  "timestamp": 1746884632413
}

/metrics/entities

{
  "counts": {
    "nether": 4,
    "overworld": 3,
    "the_end": 10
  },
  "distribution": {
    "nether": {
      "STRIDER": 4
    },
    "overworld": {
      "CHEST_MINECART": 3
    },
    "the_end": {
      "END_CRYSTAL": 10
    }
  }
}

/metrics/players

[
  {
    "totalPlaytimeMillis": 26095444,
    "name": "MeisterAH",
    "uuid": "debb8545-6216-4115-bc21-11c3529e3a3a"
  },
  {
    "totalPlaytimeMillis": 384016,
    "name": "Nickkyy_",
    "uuid": "095ecf90-6a7e-42eb-84eb-efd1c5f4417f"
  },
  {
    "totalPlaytimeMillis": 26416194,
    "name": "Schwabbel_Split",
    "uuid": "63a3ae68-0d98-4428-91e5-b4862d8b4e62"
  },
  {
    "totalPlaytimeMillis": 2268454,
    "name": "Jak0bUVA",
    "uuid": "fefca110-bcc9-483a-b647-54afc3ce9ba5"
  },
  {
    "totalPlaytimeMillis": 2267672,
    "name": "Maxomito",
    "uuid": "9dd498e6-517a-4b33-9d0a-57747e5c4e4f"
  }
]

/metrics/history (if enabled, default true)

{
    "cpuUsage": 0.06,
    "uptimeMillis": 81362446,
    "memory": {
      "max": 2147483648,
      "used": 631376208
    },
    "maxPlayers": 100,
    "onlinePlayers": 0,
    "entityCount": 17,
    "tps": 20.0000402534144,
    "ping": 0,
    "players": [],
    "serverAddress": "123.123.123.123",
    "loadedChunks": 147,
    "timestamp": 1746889490587
  },
  {
    "cpuUsage": 0,
    "uptimeMillis": 81361458,
    "memory": {
      "max": 2147483648,
      "used": 619055352
    },
    "maxPlayers": 100,
    "onlinePlayers": 0,
    "entityCount": 17,
    "tps": 19.9999879986739,
    "ping": 0,
    "players": [],
    "serverAddress": "123.123.123.123",
    "loadedChunks": 147,
    "timestamp": 1746889489600
  },
  {
    "cpuUsage": 0.06,
    "uptimeMillis": 81360450,
    "memory": {
      "max": 2147483648,
      "used": 619055352
    },
    "maxPlayers": 100,
    "onlinePlayers": 0,
    "entityCount": 17,
    "tps": 19.9999989690001,
    "ping": 0,
    "players": [],
    "serverAddress": "123.123.123.123",
    "loadedChunks": 147,
    "timestamp": 1746889489600
  }

  [...]
Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more