API-Dokumentation
Alle Endpunkte liefern JSON. Authentifizierung erfolgt über Bearer-Token. Eigene Importdaten ergänzen Firma, Abuse-Kontakt und Hosted Domains.
Authorization: Bearer ipa_DEIN_TOKEN| Methode | Pfad | Scope | Beschreibung |
|---|---|---|---|
| GET | /plane oder /plain | öffentlich | Eigene IP als Text oder JSON ausgeben |
| GET | /api/v1/plane | öffentlich | Eigene IP als JSON ausgeben |
| GET | /api/v1/me | lookup | Eigene IP vollständig auflösen |
| GET | /api/v1/ip/{ip} | lookup | Einzel-Lookup |
| GET | /api/v1/asn/{asn} | asn | ASN-Informationen |
| GET | /api/v1/rdap/{query} | rdap | RDAP für IP oder ASN |
| POST | /api/v1/batch | batch | Mehrere IPs in einer Anfrage |
| GET | /api/v1/status | status | API- und Providerstatus |
Codebeispiele
curl -H "Authorization: Bearer ipa_TOKEN" "https://netzradar.com/api/v1/ip/216.73.216.48"$response = file_get_contents("https://netzradar.com/api/v1/ip/216.73.216.48");fetch("https://netzradar.com/api/v1/me", { headers: { Authorization: "Bearer ipa_TOKEN" }})Playground
// Antwort erscheint hier