Skip to main content
POST
/
api
/
rdap
/
domains
/rdap/domains
curl --request POST \
  --url https://api.anysite.io/api/rdap/domains \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "domain": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@rdap_domain",
    "ldh_name": "<string>",
    "unicode_name": "<string>",
    "handle": "<string>",
    "status": [],
    "registered_at": "<string>",
    "expires_at": "<string>",
    "updated_at": "<string>",
    "is_dnssec_signed": false,
    "entities": [],
    "nameservers": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
domain
string
required

Domain name to look up

Minimum string length: 1
Examples:

"google.com"

"example.org"

"iana.org"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@rdap_domain
ldh_name
string | null
unicode_name
string | null
handle
string | null
status
string[]
registered_at
string | null
expires_at
string | null
updated_at
string | null
is_dnssec_signed
boolean
default:false
entities
RdapEntity · object[]
nameservers
RdapNameserver · object[]