Whether a domain is available to register.
Check if a domain is available to register. Core returns available from RDAP · true if unregistered, false if taken, null if the registry couldn't be reached.
On paid plans, ?deep=true adds A, AAAA, nameservers, MX, TXT, a mail provider guess, and registration details. For MX alone, use MX.
curl "https://api.parseapi.com/domain/gmail.com" \
-H "X-API-Key: YOUR_API_KEY"{
"domain": "gmail.com",
"available": false
}Response fields
Paid. DNS (A, AAAA, NS, MX, TXT), a best-effort mail provider from MX, plus registration via RDAP, created, expires, registrar, status, dnssec. Registration is omitted if RDAP is unavailable.
curl "https://api.parseapi.com/domain/gmail.com?deep=true" \
-H "X-API-Key: YOUR_API_KEY"{
"domain": "gmail.com",
"available": false,
"deep": {
"a": [
"142.250.72.101"
],
"aaaa": [
"2607:f8b0:4004:c1b::65"
],
"ns": [
"ns1.google.com",
"ns2.google.com"
],
"mx": [
{
"priority": 5,
"host": "gmail-smtp-in.l.google.com"
},
{
"priority": 10,
"host": "alt1.gmail-smtp-in.l.google.com"
}
],
"txt": [
"v=spf1 include:_spf.google.com ~all"
],
"provider": "Google",
"registration": {
"registered": true,
"created": "1995-08-13T04:00:00.000Z",
"updated": "2026-01-16T18:26:50.000Z",
"expires": "2026-08-13T04:00:00.000Z",
"registrar": "MarkMonitor Inc.",
"status": [
"client transfer prohibited"
],
"dnssec": true
}
}
}Deep fields
Questions? Email