Skip to content

Get Subdomain Information

This documentation helps you retrieve subdomain information by providing the domain. The response will include a list of associated subdomains.

Further Reading: Retrieving Subdomain Information

You can retrieve the subdomains associated with a domain by making a request to the following API endpoint:

GET https://api-sb.ricardoneud.com/v1/tools/subdomainfinder

Request Headers:

HeaderTypeRequiredDescription
AuthorizationstringBearer token with a valid API key
X-DomainstringThe domain of the DNS you want to check

Example Response

The response will contain a list of subdomains.

Example:

{
"status": "success",
"data": [
{
"subdomain": "sub1.ricardoneud.com",
"ip": "192.168.1.3"
},
{
"subdomain": "sub2.ricardoneud.com",
"ip": "192.168.1.4"
},
{
"subdomain": "sub3.ricardoneud.com",
"ip": "192.168.1.3"
},
{
"subdomain": "sub4.ricardoneud.com",
"ip": "192.168.1.1"
},
{
"subdomain": "sub5.ricardoneud.com",
"ip": "192.168.1.3"
}
],
"count": 5,
"most_common_ip": "192.168.1.3",
"most_common_ip_count": 3,
"total_unique_ips": 3
}

Fields in the Response:

  • subdomain: The subdomain associated with the provided domain.
  • status: The status of the request (e.g., success, failure).