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
  • v2
  • Clients
    • Licenses
      • Get Licenses
  • Games
    • Minecraft
      • Get Minecraft Server
  • Reseller
    • Licenses
      • Check License
      • Generate License
      • Update License
      • Delete License
  • Tools
    • Get Subdomains
      GET
    • Mail DNS Checker
      GET
    • Get DNS Information
      GET
  1. Tools

Get DNS Information

Obsolete
GET
https://api.ricardoneud.com/v2/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
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ricardoneud.com/v2/tools/dnscheck' \
--header 'X-Domain;' \
--header 'X-Record-Type;' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "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
Mail DNS Checker
Built with