diff --git a/ce_ui/settings/base.py b/ce_ui/settings/base.py
index 7233c34..c4464df 100644
--- a/ce_ui/settings/base.py
+++ b/ce_ui/settings/base.py
@@ -476,6 +476,18 @@ def ACCOUNT_USER_DISPLAY(user):
"MIT",
"https://github.com/ContactEngineering/topobank",
),
+ (
+ "topobank_rest_api",
+ "topobank_rest_api.__version__",
+ "MIT",
+ "https://github.com/ContactEngineering/topobank-rest-api",
+ ),
+ (
+ "topobank_orcid",
+ "topobank_orcid.__version__",
+ "MIT",
+ "https://github.com/ContactEngineering/topobank-orcid",
+ ),
(
"topobank_statistics",
"topobank_statistics.__version__",
diff --git a/frontend/components/layout/VersionInformation.vue b/frontend/components/layout/VersionInformation.vue
index 89acbee..c22aa13 100644
--- a/frontend/components/layout/VersionInformation.vue
+++ b/frontend/components/layout/VersionInformation.vue
@@ -27,6 +27,12 @@ onMounted(() => {
topobank
v{{ versions.topobank.version }},
+
+ rest-api
+ v{{ versions.topobank_rest_api.version }},
+
+ orcid
+ v{{ versions.topobank_orcid.version }},
ui
v{{ versions.ce_ui.version }};