Rebol/RDAP

April 2, 2025 ยท View on GitHub

rebol-rdap

Rebol-RDAP CI Gitter

Rebol/RDAP

Registration Data Access Protocol (RDAP) scheme for Rebol3

REST API Usage example

;; Import the module
import rdap

;; Collect all available info about a domain
data: read rdap:google.com

;; Collect info about an IP
data: read rdap:109.81.82.250

;; Or using `write` instead
foreach value ["google.com" "github.com" 109.81.82.250][
	write rdap:// value
]

By default, the scheme prints basic output to the console. This can be disabled by adjusting the RDAP verbosity level in the log options.

system/options/log/rdap: 0

image