Skip to main content
GET
/
v4
/
tools
/
subdomainfinder
Get Subdomains
curl --request GET \
  --url https://api.ricardoneud.com/v4/tools/subdomainfinder \
  --header 'Basic: <api-key>' \
  --header 'X-Domain: <x-domain>'
{
"status": "success",
"data": [
{
"subdomain": "m.testexample.com",
"ip": "13.248.169.48"
},
{
"subdomain": "www.example.com",
"ip": "2.18.121.77"
}
],
"count": 2,
"most_common_ip": "13.248.169.48",
"most_common_ip_count": 1,
"total_unique_ips": 2
}

Authorizations

Basic
string
header
required

Headers

X-Domain
string
required

The domain of the DNS you want to check

Response

Fields in the Response:

  • subdomain: The subdomain associated with the provided domain.
  • status: The status of the request (e.g., success, failure).
status
string
required
data
object[]
required
count
integer
required
most_common_ip
string
required
most_common_ip_count
integer
required
total_unique_ips
integer
required
I