diff --git a/src/components/FunctionalArea/NavBar/NavBar.component.tsx b/src/components/FunctionalArea/NavBar/NavBar.component.tsx
index f3ea9be4c88be844e78ff92b44c5965b42059e4b..ba0a34f7669edd557effa934655a87287a345e80 100644
--- a/src/components/FunctionalArea/NavBar/NavBar.component.tsx
+++ b/src/components/FunctionalArea/NavBar/NavBar.component.tsx
@@ -1,5 +1,6 @@
 import logoImg from '@/assets/images/logo.png';
 import luxembourgLogoImg from '@/assets/images/luxembourg-logo.png';
+import { API_DOCS_URL, MINERVA_WEBSITE_URL } from '@/constants';
 import { openDrawer } from '@/redux/drawer/drawer.slice';
 import { useAppDispatch } from '@/redux/hooks/useAppDispatch';
 import { openLegend } from '@/redux/legend/legend.slice';
@@ -37,7 +38,9 @@ export const NavBar = (): JSX.Element => {
       <div data-testid="nav-buttons">
         <div className="mb-8 flex flex-col gap-[10px]">
           <IconButton icon="info" onClick={openDrawerInfo} title="Project info" />
-          <IconButton icon="page" title="API Doc" />
+          <a href={API_DOCS_URL} target="_blank">
+            <IconButton icon="page" title="API Doc" />
+          </a>
           <IconButton icon="plugin" onClick={openDrawerPlugins} title="Available plugins" />
           <IconButton icon="export" onClick={openDrawerExport} title="Export" />
         </div>
@@ -57,7 +60,10 @@ export const NavBar = (): JSX.Element => {
         />
         <Image src={logoImg} alt="logo" height={48} width={48} />
         <span className="h-16 w-14 text-center text-[8px] leading-4">
-          Powered by: MINERVA Platform (v16.0.8)
+          Powered by: MINERVA Platform{' '}
+          <a href={MINERVA_WEBSITE_URL} target="_blank">
+            (v16.0.8)
+          </a>
         </span>
       </div>
     </div>
diff --git a/src/constants/index.ts b/src/constants/index.ts
index 844268225f45daa6a286de76a1c04085439b2969..81fd6021b0a3f77af53e31549566560ab38ecd85 100644
--- a/src/constants/index.ts
+++ b/src/constants/index.ts
@@ -10,3 +10,5 @@ export const PROJECT_ID = getProjectIdFromUrl() || DEFAULT_PROJECT_ID;
 export const ZOD_SEED = parseInt(process.env.ZOD_SEED || '123', 10);
 export const BIO_ENTITY = 'bioEntity';
 export const DRUGS_CHEMICALS = ['drugs', 'chemicals'];
+export const MINERVA_WEBSITE_URL = 'https://minerva.pages.uni.lu/doc/';
+export const API_DOCS_URL = 'https://lux1.atcomp.pl/minerva/docs/';