diff --git a/main.go b/main.go
index 593503d4ec84f2cd7022cc1371b7ce3d9f678be4..cf061fcd5f26a88f5a02c1559e8108374b806bc4 100644
--- a/main.go
+++ b/main.go
@@ -164,14 +164,14 @@ Options:
 	}
 
 	for _, provider := range acmeProviders {
-		apiURLs = append(apiURLs, "/api/"+provider, "/api/"+provider+"/")
+		apiURLs = append(
+			apiURLs, "/api/"+provider, "/api/"+provider+"/",
+			"/"+provider+"/"+provider+".json", "/"+provider+"/"+provider+"_expired.json",
+		)
 	}
 
 	for _, provider := range acmeProviders {
-		otherURLs = append(
-			otherURLs, "/"+provider+"/by_name.html", "/"+provider+"/by_date.html",
-			"/"+provider+"/"+provider+".json", "/"+provider+"/"+provider+"_expired.json",
-		)
+		otherURLs = append(otherURLs, "/"+provider+"/by_name.html", "/"+provider+"/by_date.html")
 	}
 
 	puppetURL := "/puppet"