State who we actually are :)
diff --git a/src/plugins/utils/jsonapi.py b/src/plugins/utils/jsonapi.py
index bd10a8c..21aa48a 100644
--- a/src/plugins/utils/jsonapi.py
+++ b/src/plugins/utils/jsonapi.py
@@ -27,7 +27,8 @@
 def get(url, cookie = None, auth = None, token = None, retries = 5):
     headers = {
         "Content-type": "application/json",
-        "Accept": "application/json"
+        "Accept": "application/json",
+        "User-Agent": "Apache Kibble",
     }
     if auth:
         xcreds = auth.encode(encoding='ascii', errors='replace')
@@ -70,7 +71,8 @@
 def post(url, data, cookie = None, auth = None):
     headers = {
         "Content-type": "application/json",
-        "Accept": "*/*"
+        "Accept": "*/*",
+        "User-Agent": "Apache Kibble",
     }
     if auth:
         xcreds = auth.encode(encoding='ascii', errors='replace')