Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

DomScan Java SDK

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.

Installation

mvn dependency:get -Dartifact=net.domscan:domscan-sdk-java:0.1.0

Quick Start

import 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);

Resources

Notes

  • The Java SDK currently returns raw JSON strings for responses to keep the dependency footprint minimal.