Releases: rdapapi/python-sdk
Releases · rdapapi/python-sdk
v0.3.0
v0.2.0
Full Changelog: v0.1.0...v0.2.0
v0.1.0
Initial release of the official Python SDK for the RDAP API.
Features
- Sync and async clients (
RdapApiandAsyncRdapApi) - All 5 RDAP lookup types: domain, IP, ASN, nameserver, entity
- Registrar follow-through for thin registries (
follow=True) - Typed Pydantic models with full autocomplete support
- Typed exceptions for all API error codes (401, 403, 404, 429, 502)
- Python 3.9 – 3.13
Installation
pip install rdapapiQuick start
from rdapapi import RdapApi
api = RdapApi("your-api-key")
domain = api.domain("google.com")
print(domain.registrar.name) # "MarkMonitor Inc."Full documentation at rdapapi.io/docs