diff --git a/http.c b/http.c
index bbfc027..ead8ee3 100644
--- a/http.c
+++ b/http.c
@@ -22,6 +22,7 @@ char* request(char *url)
 	if(httpHandler) {
 		curl_easy_setopt(httpHandler,CURLOPT_URL, url);
 		curl_easy_setopt(httpHandler,CURLOPT_WRITEFUNCTION, httpResponseCallback);
+		curl_easy_setopt(httpHandler,CURLOPT_USERAGENT, "cWikiBot/0.1 (https://git.zom.bi/cpp/cWikiBot; cpp@zom.bi) libcurl4/7.64.0");
 		curl_easy_setopt(httpHandler,CURLOPT_WRITEDATA, (void *)&httpResponse);
 		return_code = curl_easy_perform(httpHandler);
 	}