FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
RDAP Is Replacing WHOIS — And It Returns Structured JSON For Free
NewsProgramming Languages

RDAP Is Replacing WHOIS — And It Returns Structured JSON For Free

via Dev.to PythonAlex Spinov2h ago

WHOIS Is Broken If you've ever tried to parse WHOIS data programmatically, you know the pain: Every registrar returns a different format The output is plain text with no standard structure Rate limits are aggressive Some registrars just... don't respond Enter RDAP RDAP (Registration Data Access Protocol) is the official replacement for WHOIS, standardized by IETF (RFC 7480-7484). The key difference: it returns structured JSON . curl https://rdap.org/domain/github.com You get: { "objectClassName" : "domain" , "handle" : "D1GITHUB-COM" , "ldhName" : "github.com" , "status" : [ "client delete prohibited" , "client transfer prohibited" ], "events" : [ { "eventAction" : "registration" , "eventDate" : "2007-10-09T18:20:50Z" }, { "eventAction" : "expiration" , "eventDate" : "2026-10-09T07:00:00Z" } ], "nameservers" : [ ... ] } No auth. No API key. Structured JSON. Real Example: Domain Intelligence Script import requests from datetime import datetime def domain_intel ( domain ): """ Get struct

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
0 views

Related Articles

Amazon just bought a startup making kid-size humanoid robots
News

Amazon just bought a startup making kid-size humanoid robots

TechCrunch • 54m ago

News

The Fragile Thread

Medium Programming • 1h ago

Accel, Prosus pick six ‘off-the-map’ startups for inaugural India cohort
News

Accel, Prosus pick six ‘off-the-map’ startups for inaugural India cohort

TechCrunch • 2h ago

Quantum Supremacy vs. Quantum Advantage: State of The Union
News

Quantum Supremacy vs. Quantum Advantage: State of The Union

Medium Programming • 2h ago

Instagram and Facebook are about to be filled with affiliate content
News

Instagram and Facebook are about to be filled with affiliate content

The Verge • 2h ago

Discover More Articles