diff --git a/package/gluon-mesh-babel/src/respondd.c b/package/gluon-mesh-babel/src/respondd.c
index d82ce6afcb22858b67a47a0f57bb8c47fb0d9a33..80c4f97012a27240d852661ec70f2a1b25174b74 100644
--- a/package/gluon-mesh-babel/src/respondd.c
+++ b/package/gluon-mesh-babel/src/respondd.c
@@ -241,7 +241,7 @@ static struct json_object * get_babel_neighbours(void) {
 	if (!neighbours)
 		return NULL;
 
-	babelhelper_readbabeldata(&bhelper_ctx, (void*)neighbours, handle_neighbour);
+	babelhelper_readbabeldata(&bhelper_ctx, "dump", (void*)neighbours, handle_neighbour);
 
 	return(neighbours);
 }
@@ -593,7 +593,7 @@ static struct json_object * respondd_provider_statistics(void) {
 	json_object_object_add(ret, "clients", get_clients());
 	json_object_object_add(ret, "traffic", get_traffic());
 
-	babelhelper_readbabeldata(&bhelper_ctx, (void*)ret, handle_route_addgw_nexthop );
+	babelhelper_readbabeldata(&bhelper_ctx, "dump", (void*)ret, handle_route_addgw_nexthop );
 
 	return ret;
 }