diff --git a/.changeset/app-release-info-page.md b/.changeset/app-release-info-page.md
new file mode 100644
index 0000000000000000000000000000000000000000..245131c987e58998241b1261fadbd73cb7ca824e
--- /dev/null
+++ b/.changeset/app-release-info-page.md
@@ -0,0 +1,5 @@
+---
+"@rocket.chat/meteor": patch
+---
+
+Fixed Marketplace Release Info tab loading loop
\ No newline at end of file
diff --git a/apps/meteor/ee/server/apps/communication/rest.ts b/apps/meteor/ee/server/apps/communication/rest.ts
index 361865a9567830290ce9eecafd33b256f045045a..790e5a87a19dffea58db5dcdebc3bb02fc286ef0 100644
--- a/apps/meteor/ee/server/apps/communication/rest.ts
+++ b/apps/meteor/ee/server/apps/communication/rest.ts
@@ -799,7 +799,7 @@ export class AppsRestApi {
 					let result;
 					let statusCode;
 					try {
-						const request = await fetch(`${baseUrl}/v1/apps/${this.urlParams.id}/versions`, { headers });
+						const request = await fetch(`${baseUrl}/v1/apps/${this.urlParams.id}`, { headers });
 						statusCode = request.status;
 						result = await request.json();