Coba langsung
Lookup ini otomatis memakai RDAP domain atau RDAP IP sesuai target.
Fungsi utama
Cocok untuk
- - Cek registrar
- - Cek domain status
- - Cek nameserver dari registry
- - Cek pemilik/network IP
Input
- - Domain root atau IP publik
Yang dicek
RDAP events Domain status Entities Nameservers Network range
Output yang ideal
- - Registrar atau network owner
- - Nameserver domain
- - Status EPP
- - Range IP
- - Tanggal penting
Contoh implementasi Node
Astro endpoint readyexport async function lookupRdap(domain: string) {
const response = await fetch(`https://rdap.org/domain/${domain}`, {
signal: AbortSignal.timeout(8000)
});
if (!response.ok) {
throw new Error("RDAP lookup failed");
}
return response.json();
}