diff --git a/CMakeLists.txt b/CMakeLists.txt
index 67e758d6..62496c64 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -31,6 +31,7 @@ set(PRJ_HEADERS
include/Defer.h
include/Environment.h
include/Http.h
+ include/HttpAsync.h
include/IThreaded.h
include/Json.h
include/LuaAPI.h
@@ -60,6 +61,7 @@ set(PRJ_SOURCES
src/Common.cpp
src/Compat.cpp
src/Http.cpp
+ src/HttpAsync.cpp
src/LuaAPI.cpp
src/SignalHandling.cpp
src/TConfig.cpp
diff --git a/include/HttpAsync.h b/include/HttpAsync.h
new file mode 100644
index 00000000..72932325
--- /dev/null
+++ b/include/HttpAsync.h
@@ -0,0 +1,155 @@
+// BeamMP, the BeamNG.drive multiplayer mod.
+// Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
+//
+// BeamMP Ltd. can be contacted by electronic mail via contact@beammp.com.
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as published
+// by the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see .
+
+#pragma once
+
+#include
+#include