diff --git a/app/Http/Controllers/Api/Application/Nodes/NodeController.php b/app/Http/Controllers/Api/Application/Nodes/NodeController.php
index 549ccbf56..54534edaf 100644
--- a/app/Http/Controllers/Api/Application/Nodes/NodeController.php
+++ b/app/Http/Controllers/Api/Application/Nodes/NodeController.php
@@ -108,7 +108,7 @@ class NodeController extends ApplicationApiController
         $node = $this->updateService->handle(
             $node,
             $request->validated(),
-            $request->input('reset_secret') === true
+            $request->input('reset_secret')
         );
 
         return $this->fractal->item($node)
diff --git a/app/Http/Controllers/Api/Application/Nodes/NodeInformationController.php b/app/Http/Controllers/Api/Application/Nodes/NodeInformationController.php
new file mode 100644
index 000000000..6b87578c7
--- /dev/null
+++ b/app/Http/Controllers/Api/Application/Nodes/NodeInformationController.php
@@ -0,0 +1,52 @@
+<?php
+
+namespace Pterodactyl\Http\Controllers\Api\Application\Nodes;
+
+use Carbon\Carbon;
+use Illuminate\Support\Str;
+use Illuminate\Http\Request;
+use Pterodactyl\Models\Node;
+use Illuminate\Http\JsonResponse;
+use Illuminate\Cache\Repository as Cache;
+use Pterodactyl\Repositories\Wings\DaemonConfigurationRepository;
+use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
+
+class NodeInformationController extends ApplicationApiController
+{
+    private Cache $cache;
+    private DaemonConfigurationRepository $repository;
+
+    public function __construct(Cache $cache, DaemonConfigurationRepository $repository)
+    {
+        parent::__construct();
+
+        $this->cache = $cache;
+        $this->repository = $repository;
+    }
+
+    /**
+     * Returns system information from the node.
+     *
+     * @return \Illuminate\Http\JsonResponse
+     *
+     * @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
+     */
+    public function __invoke(Request $request, Node $node)
+    {
+        $data = $this->cache
+            ->tags(['nodes'])
+            ->remember($node->uuid, Carbon::now()->addSeconds(30), function () use ($node) {
+                return $this->repository->setNode($node)->getSystemInformation();
+            });
+
+        return new JsonResponse([
+            'version' => $data['version'] ?? null,
+            'system' => [
+                'type' => Str::title($data['os'] ?? 'Unknown'),
+                'arch' => $data['architecture'] ?? null,
+                'release' => $data['kernel_version'] ?? null,
+                'cpus' => $data['cpu_count'] ?? null,
+            ],
+        ]);
+    }
+}
diff --git a/routes/api-application.php b/routes/api-application.php
index ee7711400..98f0f0a20 100644
--- a/routes/api-application.php
+++ b/routes/api-application.php
@@ -117,6 +117,7 @@ Route::group(['prefix' => '/nodes'], function () {
     Route::get('/deployable', 'Nodes\NodeDeploymentController');
     Route::get('/{node}', 'Nodes\NodeController@view')->name('api.application.nodes.view');
     Route::get('/{node}/configuration', 'Nodes\NodeConfigurationController');
+    Route::get('/{node}/information', 'Nodes\NodeInformationController');
 
     Route::post('/', 'Nodes\NodeController@store');