diff --git a/js/src/featured-projects-committer.js b/js/src/featured-projects-committer.js
index aeea0c496fa831a23fd0ac524926b8b6f28fa180..44e013db06961c30de7611fb54d0b70ba8128804 100644
--- a/js/src/featured-projects-committer.js
+++ b/js/src/featured-projects-committer.js
@@ -1,17 +1,17 @@
 (function($, document) {
 
   $.ajax({
-      url: "https://newsroom.eclipse.org/api/edition/39472",
+      url: "https://newsroom.eclipse.org/api/edition?options[orderby][nid]=DESC&pagesize=1",
       type: 'GET',
       dataType: 'json',
       success: function(data, status) {
 
-          if (data.featured_committer !== undefined && data.featured_committer.length !== 0) {
+          if (data.editions[0].featured_committer !== undefined && data.editions[0].featured_committer.length !== 0) {
 
               $(".featured-committer-project-section").css('display', 'block');
               $(".featured-committer-section").css('display', 'block');
 
-              const committer = data.featured_committer
+              const committer = data.editions[0].featured_committer
               var image = "<div class='col-xs-8 padding-0 eclipsefdn-user-display-circle'><img class='img img-responsive' src=" + committer.picture + "></div>"
               var content = " <div class='col-xs-16'>" +
               "<h3 class='h4'><strong>" + committer.name + "</strong></h3>" +
@@ -24,12 +24,12 @@
 
               $('#commiters-container').append(result);
           }
-          if (data.featured_project !== undefined && data.featured_project.length !== 0) {
+          if (data.editions[0].featured_project !== undefined && data.editions[0].featured_project.length !== 0) {
 
               $(".featured-committer-project-section").css('display', 'block');
               $(".featured-project-section").css('display', 'block');
 
-              const project = data.featured_project;
+              const project = data.editions[0].featured_project;
               var project_id = project.id;
               var project_id = project_id.replace(/\./g, "_");