Official Java client for the DomScan API.
This SDK is generated from the shared endpoint manifest in this repository and covers the same 79 public non-session endpoints as the other official DomScan SDKs.
mvn dependency:get -Dartifact=net.domscan:domscan-sdk-java:0.1.0import java.util.List;
import java.util.Map;
import net.domscan.DomScanClient;
DomScanClient client = new DomScanClient();
String response = client.availability.checkDomainAvailability(Map.of(
"name", "launch",
"tlds", List.of("com", "io", "ai"),
"prefer_cache", true
));
System.out.println(response);- Docs: https://domscan.net/docs
- OpenAPI: https://domscan.net/v1/openapi.json
- SDK hub: ../README.md
- The Java SDK currently returns raw JSON strings for responses to keep the dependency footprint minimal.