diff --git a/dnsapi2.md b/dnsapi2.md
index 353ab84..da3f4ba 100644
--- a/dnsapi2.md
+++ b/dnsapi2.md
@@ -102,6 +102,7 @@
- [178. Use FreeMyIP DNS API](#dns_freemyip)
- [179. Use Area-7 DNS API](#dns_area7)
- [180. Use HestiaCP DNS API](#dns_hestiacp)
+- [181. Use Netim DNS API](#dns_netim)
- [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon)
@@ -2581,6 +2582,30 @@ Example Usage:
acme.sh --issue -d example.com -d *.example.com --dns dns_hestiacp
```
+
+
+## 181. Use Netim DNS API
+
+You need a reseller account to access the DNS API.
+
+API Key Setup:
+ 1. Log in to Netim Direct with a reseller account
+ 2. Go to Account -> Personal information and find your "UserID:"
+ 3. Use the same pasword used to login on Netim Direct
+
+Before running `acme.sh` script, you need to provide your user and secret:
+
+```sh
+export NETIM_USER='XX1234'
+export NETIM_SECRET='mypassword'
+```
+
+To issue your certificate run:
+
+```sh
+./acme.sh --issue --dns dns_netim -d example.domain.com
+```
+
## Use custom API