{
  "service": "buheli-status",
  "docsUrl": "https://status.buhe.li/api/docs",
  "endpoints": {
    "health": {
      "method": "GET",
      "url": "https://status.buhe.li/api/health",
      "auth": "none"
    },
    "readStatus": {
      "method": "GET",
      "url": "https://status.buhe.li/api/status",
      "auth": "none"
    },
    "pushStatus": {
      "method": "POST",
      "url": "https://status.buhe.li/api/status",
      "contentType": "application/json",
      "auth": "Bearer <STATUS_API_TOKEN>",
      "requiredBody": {
        "cpu1Usage": "number 0-100",
        "cpu2Usage": "number 0-100",
        "cpu1Temperature": "number 0-120",
        "cpu2Temperature": "number 0-120",
        "playersOnline": "integer 0-5000",
        "tps": "number 0-20",
        "mspt": "number 0-1000",
        "survivalDays": "integer 0-10000000"
      }
    },
    "pushMinecraftStatus": {
      "method": "POST",
      "url": "https://status.buhe.li/api/minecraft/status",
      "contentType": "application/json",
      "auth": "Bearer <PLUGIN_STATUS_API_TOKEN>",
      "requiredBody": {
        "playersOnline": "integer 0-5000"
      },
      "optionalBody": {
        "playersMax": "integer 0-5000",
        "tps": "number 0-20",
        "mspt": "number 0-1000",
        "survivalDays": "integer 0-10000000",
        "cpu1Usage": "number 0-100",
        "cpu2Usage": "number 0-100",
        "cpu1Temperature": "number 0-120",
        "cpu2Temperature": "number 0-120",
        "capturedAt": "ISO 8601 timestamp",
        "source": "string",
        "note": "string"
      }
    }
  }
}