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.ricardoneud.com/v2/tools/subdomainfinder
Request Headers:
Header | Type | Required | Description |
---|---|---|---|
Authorization | string | ✅ | Bearer token with a valid API key |
X-Domain | string | ✅ | The domain of the DNS you want to check |
Example Response
The response will contain a list of subdomains.
Example:
{ "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}
Fields in the Response:
- subdomain: The subdomain associated with the provided domain.
- status: The status of the request (e.g.,
success
,failure
).