/rdap/entities
Look up registration data for a registry entity (contact) by its handle via RDAP
Price: 1 credit
💡 AI Hint: Look up a registry entity (a contact / organization record) by its handle. Entities are the people and organizations behind domains, IP networks and ASNs — registrars, registrants, abuse / administrative / technical contacts. Returns the entity’s roles, status, normalized contact details (name, organization, email, phone, address), its IANA registrar id if it is a registrar, registration / last-changed dates, and any nested entities. The handle is registry-specific (e.g. ‘ABUSE5250-ARIN’ for ARIN, ‘RAR939-FRNIC’ for AFNIC); it is usually obtained from a domain, IP or ASN lookup.
⚠️ Common errors: 412: Entity not found
Authorizations
API token from the dashboard
Headers
Body
Response
Successful Response
Normalized contact extracted from an RDAP entity's jCard (RFC 7095).
The upstream vcardArray is a POSITIONAL array, NOT a key/value object:
["vcard", [["fn", {}, "text", "Name"], ["email", {}, "text", "a@b.c"], ...]]
Each property is a 4-element array [name, params, value_type, value]. Because
the format is positional (index 0 = property name, index 3 = value), mg/mgo
(which navigate dict keys / treat numeric path segments as list indices) cannot
address it cleanly — so the jCard walker below uses direct positional indexing
with explicit length guards. This is the only place direct indexing is allowed.