Skip to main content
POST
/
api
/
rdap
/
autnums
/rdap/autnums
curl --request POST \
  --url https://api.anysite.io/api/rdap/autnums \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "autnum": "15169",
  "timeout": 300
}
'
[
  {
    "@type": "@rdap_autnum",
    "handle": "<string>",
    "start_autnum": 123,
    "end_autnum": 123,
    "name": "<string>",
    "type": "<string>",
    "country": "<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
autnum
required

Autonomous System Number to look up (accepts a bare number or an 'AS'-prefixed value)

Example:

"15169"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@rdap_autnum
handle
string | null
start_autnum
integer | null
end_autnum
integer | null
name
string | null
type
string | null
country
string | null
status
string[]
registered_at
string | null
updated_at
string | null
entities
RdapEntity · object[]