https://github.com/oldes/rebol-rdap
Registration Data Access Protocol (RDAP) in Rebol
https://github.com/oldes/rebol-rdap
rdap rdap-client rdap-protocol rebol rebol-scheme rebol3
Last synced: 4 months ago
JSON representation
Registration Data Access Protocol (RDAP) in Rebol
- Host: GitHub
- URL: https://github.com/oldes/rebol-rdap
- Owner: Oldes
- License: mit
- Created: 2025-03-25T15:36:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-02T09:46:48.000Z (about 1 year ago)
- Last Synced: 2025-10-20T06:33:29.496Z (8 months ago)
- Topics: rdap, rdap-client, rdap-protocol, rebol, rebol-scheme, rebol3
- Language: Rebol
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://github.com/Oldes/Rebol-RDAP/actions/workflows/main.yml)
[](https://app.gitter.im/#/room/#Rebol3:gitter.im)
# Rebol/RDAP
Registration Data Access Protocol ([RDAP](https://about.rdap.org/)) scheme for [Rebol3](https://github.com/Oldes/Rebol3)
## REST API Usage example
```rebol
;; 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.
```rebol
system/options/log/rdap: 0
```
