Ricardoneud.com
DocumentationHelp Center
API Reference
  • Production
  • Sandbox
DocumentationHelp Center
API Reference
  • Production
  • Sandbox
Discord Community
Github
  1. Tools
  • Back to home
  • v1
  • Games
    • Minecraft
      • Get Minecraft Server
  • Tools
    • Get DNS Information
      GET
    • Get Domain Information
      GET
    • Mail DNS Checker
      GET
    • Validate Email Host
      POST
    • Get Subdomains
      GET
  • User Login
    • Create Secret
      POST
    • Revoke Secret
      DELETE
  1. Tools

Get Subdomains

GET
https://sandbox.api.ricardoneud.com/v4/tools/subdomainfinder
This documentation helps you retrieve subdomain information by providing the domain. The response will include a list of associated subdomains.

Request

Authorization
API Key
Add parameter in header
Basic
Example:
Basic: ********************
or
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Header Params

Responses

🟢200Success
application/json

Fields in the Response:

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

🟠401Unauthorized
🟠400Bad Request
🟠403Forbidden
🔴500Server Error
🟠429To Many Requests
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.api.ricardoneud.com/v4/tools/subdomainfinder' \
--header 'X-Domain;' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "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
}
Modified at 2025-11-15 20:28:54
Previous
Validate Email Host
Next
Create Secret
Built with