diff --git a/dnsapi2.md b/dnsapi2.md
index cabf47d..b3012ff 100644
--- a/dnsapi2.md
+++ b/dnsapi2.md
@@ -81,6 +81,7 @@
- [157. Use Google Domains DNS API](#dns_googledomains)
- [158. Use DNSExit API](#dns_dnsexit)
- [159. Use Lima-City (Trafficplex)](#dns_limacity)
+- [160. Use TencentCloud (DNSPod) API](#dns_tencent)
- [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon)
@@ -2020,6 +2021,25 @@ The login variables will be saved in `~/.acme.sh/account.conf` and will be reuse
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4758).
+
+
+## 160. Use TencentCloud (DNSPod) API
+
+Please visit https://console.cloud.tencent.com/cam/capi to obtain the API key.
+
+```sh
+export Tencent_SecretId=""
+export Tencent_SecretKey=""
+```
+
+To issue a cert, run the following:
+```sh
+./acme.sh --issue --dns dns_tencent -d example.com -d *.example.com
+```
+
+The login variables will be saved in `~/.acme.sh/account.conf` and will be reused when needed.
+
+Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4781)