diff --git a/dnsapi2.md b/dnsapi2.md
index 1377500..fa708ca 100644
--- a/dnsapi2.md
+++ b/dnsapi2.md
@@ -129,6 +129,7 @@
- [205. Use Gname.com DNS API](#dns_gname)
- [206. Use cPanel UAPI DNS](#dns_cpanel_uapi)
- [207. Use sitehost.nz DNS API](#dns_sitehost)
+- [208. Use EuroDNS DNS API](#dns_eurodns)
- [Use custom API](#dns_myapi)
@@ -3271,6 +3272,29 @@ The `SITEHOST_API_KEY` and `SITEHOST_CLIENT_ID` will be saved in ~/.acme.sh/acco
Report any bugs or issues https://github.com/acmesh-official/acme.sh/issues/6892
+## 208. Use EuroDNS DNS API
+
+
+
+[EuroDNS](https://www.eurodns.com) is a European domain registrar and DNS provider.
+
+API docs: https://docapi.eurodns.com
+
+```sh
+export EURODNS_APP_ID="your_app_id"
+export EURODNS_API_KEY="your_api_key"
+```
+
+To issue a cert, run command:
+
+```sh
+acme.sh --issue --dns dns_eurodns -d example.com -d *.example.com
+```
+
+The `EURODNS_APP_ID` and `EURODNS_API_KEY` will be saved in `~/.acme.sh/account.conf` and reused for renewals.
+
+Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6904)
+
## Use custom API