diff --git a/public/API/config.php b/public/API/config.php
new file mode 100644
index 0000000000000000000000000000000000000000..336fdbd8d55bfecd9718ba2aedb017eb4cfcee07
--- /dev/null
+++ b/public/API/config.php
@@ -0,0 +1,12 @@
+<?php
+require "./lib/config.php";
+
+$configValue = $_GET['name'];
+
+switch ($configValue){
+    case "sitekey":
+        echo($sitekey);
+        break;
+    default:
+        echo("notFound");
+}