diff --git a/frontend/src/models/system.js b/frontend/src/models/system.js
index 9dc84001c6619c5ff085e5e51c1b8c1804e2c970..d3f0f7e6a320a09ffc1b1201690944d2c8cddcd5 100644
--- a/frontend/src/models/system.js
+++ b/frontend/src/models/system.js
@@ -4,7 +4,8 @@ import { baseHeaders } from "../utils/request";
 const System = {
   ping: async function () {
     return await fetch(`${API_BASE}/ping`)
-      .then((res) => res.ok)
+      .then((res) => res.json())
+      .then((res) => res?.online || false)
       .catch(() => false);
   },
   totalIndexes: async function () {
diff --git a/frontend/src/utils/constants.js b/frontend/src/utils/constants.js
index 18bb91efdfd16ceedd71b0374eb888102a9b0a8a..fe3a2308e4eb3ba3c443b72de1f2759badf20308 100644
--- a/frontend/src/utils/constants.js
+++ b/frontend/src/utils/constants.js
@@ -1,5 +1,4 @@
-export const API_BASE =
-  import.meta.env.VITE_API_BASE || "/api";
+export const API_BASE = import.meta.env.VITE_API_BASE || "/api";
 
 export const AUTH_USER = "anythingllm_user";
 export const AUTH_TOKEN = "anythingllm_authToken";
diff --git a/server/endpoints/system.js b/server/endpoints/system.js
index 5adf14463407f0b16257be0fec9bca7a83deb9b7..8b1588a7dd73e3586ac230c6de6a939ad4133164 100644
--- a/server/endpoints/system.js
+++ b/server/endpoints/system.js
@@ -40,7 +40,7 @@ function systemEndpoints(app) {
   if (!app) return;
 
   app.get("/ping", (_, response) => {
-    response.sendStatus(200);
+    response.status(200).json({ online: true });
   });
 
   app.get("/migrate", async (_, response) => {