diff --git a/src/api/EntryPoint.ts b/src/api/EntryPoint.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c3ef802d60c206998c340867a068aa11769eff33
--- /dev/null
+++ b/src/api/EntryPoint.ts
@@ -0,0 +1,8 @@
+/**
+ * Contains server api entrypoints.
+ * Every server api call must be defined here and then used in the code.
+ */
+export enum EntryPoint {
+  login = '/api/web/login',
+  seniors = 'api/web/seniors/',
+}