Coba langsung
Masukkan IP publik untuk melihat data RDAP jaringan dan pemilik ASN.
Fungsi utama
Cocok untuk
- - Audit hosting
- - Investigasi IP
- - Cek provider jaringan
- - Debug akses firewall
Input
- - IPv4 atau IPv6
Yang dicek
RDAP IP ASN Network range Registry
Output yang ideal
- - ASN
- - Nama network
- - CIDR/range
- - Registry
- - Country jika tersedia
Contoh implementasi Node
Astro endpoint readyexport async function lookupIpRdap(ip: string) {
const response = await fetch(`https://rdap.org/ip/${ip}`, {
signal: AbortSignal.timeout(8000)
});
if (!response.ok) return null;
return response.json();
}