Skip to main content
GET
/
v2
/
tools
/
subdomainfinder
Get Subdomains
curl --request GET \
  --url https://api.ricardoneud.com/v2/tools/subdomainfinder \
  --header 'Authorization: Bearer <token>' \
  --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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Domain
string
required

The domain of the DNS you want to check

Response

200 - application/json

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