Skip to main content
POST
/
api
/
rdap
/
ips
/rdap/ips
curl --request POST \
  --url https://api.anysite.io/api/rdap/ips \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ip": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@rdap_ip",
    "handle": "<string>",
    "start_address": "<string>",
    "end_address": "<string>",
    "cidr": [],
    "ip_version": "<string>",
    "name": "<string>",
    "type": "<string>",
    "country": "<string>",
    "parent_handle": "<string>",
    "status": [],
    "registered_at": "<string>",
    "updated_at": "<string>",
    "entities": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ip
string
required

IPv4 or IPv6 address to look up

Minimum string length: 1
Examples:

"8.8.8.8"

"1.1.1.1"

"2606:4700:4700::1111"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@rdap_ip
handle
string | null
start_address
string | null
end_address
string | null
cidr
string[]
ip_version
string | null
name
string | null
type
string | null
country
string | null
parent_handle
string | null
status
string[]
registered_at
string | null
updated_at
string | null
entities
RdapEntity · object[]