diff --git a/Huobi.Net/Huobi.Net.xml b/Huobi.Net/Huobi.Net.xml
index 7b0e1f10..c291bca3 100644
--- a/Huobi.Net/Huobi.Net.xml
+++ b/Huobi.Net/Huobi.Net.xml
@@ -2278,6 +2278,26 @@
+
+
+ Huobi exchange information and configuration
+
+
+
+
+ Exchange name
+
+
+
+
+ Url to the main website
+
+
+
+
+ Urls to the API documentation
+
+
Client for accessing the Huobi API.
diff --git a/Huobi.Net/HuobiExchange.cs b/Huobi.Net/HuobiExchange.cs
new file mode 100644
index 00000000..64ee5297
--- /dev/null
+++ b/Huobi.Net/HuobiExchange.cs
@@ -0,0 +1,25 @@
+namespace Huobi.Net
+{
+ ///
+ /// Huobi exchange information and configuration
+ ///
+ public static class HuobiExchange
+ {
+ ///
+ /// Exchange name
+ ///
+ public static string ExchangeName => "Huobi";
+
+ ///
+ /// Url to the main website
+ ///
+ public static string Url { get; } = "https://www.huobi.com";
+
+ ///
+ /// Urls to the API documentation
+ ///
+ public static string[] ApiDocsUrl { get; } = new[] {
+ "https://huobiapi.github.io/docs/spot/v1/en/#change-log"
+ };
+ }
+}