diff --git a/README.md b/README.md
index ca685eb6..488c97b1 100644
--- a/README.md
+++ b/README.md
@@ -250,6 +250,7 @@ MSET (10 keys): 56022.41 requests per second, p50=0.463 msec
* [HINCRBYFLOAT](https://sugardb.io/docs/commands/hash/hincrbyfloat)
* [HKEYS](https://sugardb.io/docs/commands/hash/hkeys)
* [HLEN](https://sugardb.io/docs/commands/hash/hlen)
+* [HMGET](https://sugardb.io/docs/commands/hash/hmget)
* [HRANDFIELD](https://sugardb.io/docs/commands/hash/hrandfield)
* [HSET](https://sugardb.io/docs/commands/hash/hset)
* [HSETNX](https://sugardb.io/docs/commands/hash/hsetnx)
diff --git a/docs/docs/commands/hash/hmget.mdx b/docs/docs/commands/hash/hmget.mdx
new file mode 100644
index 00000000..a3a29270
--- /dev/null
+++ b/docs/docs/commands/hash/hmget.mdx
@@ -0,0 +1,47 @@
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+# HMGET
+
+### Syntax
+```
+HMGET key field [field ...]
+```
+
+### Module
+hash
+
+### Categories
+fast
+hash
+read
+
+### Description
+Retrieves the value of each of the listed fields from the hash.
+
+### Examples
+
+