Ricardoneud.com
DocumentationHelp Center
API Reference
  • Production
  • Sandbox (Coming Soon)
DocumentationHelp Center
API Reference
  • Production
  • Sandbox (Coming Soon)
Discord Community
Github
  1. Tools
  • Back to home
  • v4
  • 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
    • Geo IP
      GET
  • User Login
    • Create Secret
      POST
    • Revoke Secret
      DELETE
  • Oauth2
    • Access Token
      POST
    • Read Profile
      GET
  1. Tools

Get DNS Information

GET
https://api.ricardoneud.com/v4/tools/dnscheck
This documentation helps you retrieve DNS information by providing the domain. The response contains the DNS type, IP address, and the status.

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
The following DNS record types are supported by the API:
A: IPv4 address record
AAAA: IPv6 address record
MX: Mail exchange record
NS: Name server record
PTR: Pointer record
CNAME: Canonical name record
SOA: Start of authority record
TXT: Text record
SRV: Service record
CAA: Certification Authority Authorization record
DS: Delegation Signer record
DNSKEY: DNS Key record
Body

🟠401Unauthorized
🟠403Forbidden
🟠400Bad Request
🟠429To Many Requests
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ricardoneud.com/v4/tools/dnscheck' \
--header 'X-Domain;' \
--header 'X-Record-Type;' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
[
    {
        "location": "Home",
        "ip": "54.86.50.139",
        "provider": "Local Network",
        "dns_results": [
            {
                "type": "A",
                "host": "example.com",
                "ip": "1.1.1.1"
            }
        ],
        "resolved": true
    },
    {
        "location": "San Francisco CA, United States",
        "ip": "208.67.222.220",
        "provider": "OpenDNS",
        "dns_results": [
            {
                "type": "A",
                "host": "example.com",
                "ip": "8.8.8.8"
            }
        ],
        "resolved": true
    }
]
Modified at 2025-10-23 17:49:25
Previous
Get Minecraft Server
Next
Get Domain Information
Built with