Domain search is the very first piece of technical research you should do before launching any serious online project. Checking whether a name is available is the obvious part — but a real domain search process is more than an availability check. It scans dozens of signals at once: the name's history, who registered it before, which DNS servers it uses, where its nameservers live, the registrar lock state, trademark conflicts, premium pricing, TLD policy, post-GDPR privacy posture, and how close the renewal date is.
This guide goes beyond "which site do I use to look up a domain." It walks through end-to-end research using WHOIS, RDAP, DNS and registrar APIs, what each command actually does, how to run bulk lookups from the terminal, the technical impact of privacy layers, naming strategy and domain registration check workflows — all illustrated with real-world examples. Turkey's.tr /.com.tr ecosystem and the global gTLD market are covered separately.
Related guides: Domain Names, WHOIS Lookup and Registration · Domain Lookup Tools: WHOIS, RDAP and DNS · What is DNS and How to Change Settings · Free SSL with Let's Encrypt · HTTPS and TLS 1.3 Guide
What Is Domain Search and What Is a Domain Check?
Domain search, in its simplest form, is the process of finding out whether a name is registered, who owns it if it is, and what conditions you'd buy it under if it isn't. The term domain check usually refers only to the availability question — the registrar's instant answer to "can this name be bought right now?" A domain query is a more technical term: a structured query sent to the registry (over EPP or RDAP).
In practice three scenarios diverge: (1) finding an available name for a brand-new brand, (2) examining who registered an existing name and how it's wired up technically, (3) tracking the renewal/transfer state of a name. All three rely on the same protocols, but the tooling and query frequency are very different.
Availability Check vs Ownership Lookup
A name showing as "available" doesn't always mean it's truly unregistered. Some registrars return premium or reserved-list names from a different API endpoint, so trusting a single domain finder tool is misleading. An ownership query (WHOIS / RDAP), in contrast, always pulls data from the registry layer — that's the most authoritative source.
The WHOIS Protocol: History and How It Works
WHOIS was designed in the early 1980s to let network operators on ARPANET introduce themselves to one another. It was formally standardised in RFC 3912. The mechanics are dead simple: open a TCP/43 connection, write a one-line query, and the server replies in plain text. No encryption, no authentication, no structured data format.
That very simplicity is also WHOIS's biggest weakness. The format of registration records varies by registrar: some servers return key:value pairs per line, others use free-form prose, others give nothing more than a summary. This inconsistency forces every whois check tool to run a tangled chain of parsers behind the scenes.
How a WHOIS Query Flows
When you run whois example, the client really does three things. First it queries whois.iana.org to learn the authoritative WHOIS server for the TLD. Then it opens a fresh connection to that authoritative server (e.g. whois.verisign-grs.com for.com). If the response includes a Registrar WHOIS Server field, the client makes a third query and reaches the detailed record at the registrar level.
The whois command installs with apt install whois on Debian/Ubuntu, dnf install whois on RHEL/Rocky, and brew install whois on macOS via Homebrew. There is no built-in tool on Windows; we recommend the Sysinternals WhoIs.exe binary in PowerShell or the Linux package under WSL2.
RDAP: The Structured Successor to WHOIS
RDAP (Registration Data Access Protocol) is the modern successor to WHOIS, standardised in the RFC 7480-7484 series. It has five critical advantages:
- Runs over HTTPS — the encrypted connection eliminates WHOIS's plain-text leakage problem.
- Structured JSON responses — no parsers to write, no regex tricks; every field is returned under a consistent, named key.
- Standard error codes — HTTP status codes like 200/404/429 cleanly express "name not registered" or "rate limited."
- Internationalized domain and Unicode support — IDNs avoid WHOIS's character-encoding headaches.
- Access control and federation — authenticated queriers can see additional fields via OAuth/JWT; for example, full contact data is returned only to verified callers.
ICANN made RDAP mandatory for all gTLD registrars as of 2023, and the gradual shutdown of gTLD WHOIS servers is expected to begin after 2025. So if you're building a modern domain search tool, it's sensible to use RDAP as the primary protocol with WHOIS as a fallback.
RDAP Queries from the Command Line
RDAP responses are built from vCard-based contact blocks, an events list, a links chain, and status labels. That structure makes writing a domain info dashboard from scratch dramatically easier.
Key Fields in WHOIS Output
The raw output of a whois site lookup can look intimidating at first glance. The list below covers the fields you actually run into and that genuinely inform a buying or research decision.
- Domain Name — the normalised form of the queried name (uppercase, Punycode for IDNs).
- Registry Domain ID — a unique identifier assigned by the registry (gTLDs only).
- Registrar — the accredited registrar where the name is registered.
- Creation Date — when the name was first registered (UTC).
- Updated Date — last change (DNS, contact, status update).
- Registry Expiry Date — the last day the name is valid if not renewed (UTC).
- Domain Status — EPP status codes (clientTransferProhibited, serverHold, pendingDelete, etc.).
- Name Server — the list of authoritative nameservers answering DNS queries for the domain.
- DNSSEC — signedDelegation if DNSSEC is set up, unsigned otherwise.
- Registrant / Admin / Tech Contact — the registrant, administrative and technical contact blocks (largely redacted in post-GDPR gTLDs).
The three most critical of these are status, name server, and expiry. The status field tells you whether a domain can be transferred, whether registry locks are in place, or whether it's queued for deletion. The nameserver list is essential for DNS audits. The expiry date is the backbone of any renewal strategy — for high-value names, alarms 30/60/90 days before expiry are a must.
Domain Status Codes (EPP) Quick Reference
EPP (Extensible Provisioning Protocol) status codes describe a domain's registry-level locks and its position in the lifecycle. The full list lives at ICANN EPP Status Codes.
- clientTransferProhibited — the registrar blocks transfers to another registrar (registrar lock). Must be lifted to transfer.
- clientUpdateProhibited — DNS / contact changes are blocked at the registrar.
- clientDeleteProhibited — guards against accidental deletion. Recommended for high-value domains.
- serverTransferProhibited — registry-level transfer lock (the registrar can't change it).
- pendingDelete — RGP (Redemption Grace Period) is over; the name will return to the pool in 5 days.
- redemptionPeriod — expired but not yet deleted; can be restored for a steep fee (~$80-150 USD).
- autoRenewPeriod — auto-renewed by the registry; deleted if the registrar doesn't collect payment within 45 days.
- inactive — no nameservers assigned; the name can't be resolved.
- ok — no restrictions; open to transfers and changes.
For valuable brand domains, having clientUpdateProhibited + clientTransferProhibited + clientDeleteProhibited all active is the most practical defence layer against domain hijack attacks. They aren't always togglable from the registrar dashboard; serious registrars typically gate these locks behind an extra 2FA or manual approval workflow.
WHOIS After GDPR: The Age of Redaction
Since the EU's GDPR came into force in 2018, personal data in gTLD WHOIS records has been heavily masked. Under ICANN's Temporary Specification and the subsequent Registration Data Policy, registrant name/email/phone are now returned as REDACTED FOR PRIVACY. Contact happens through an anonymous webform or mail relay provided by the registrar.
This is a serious obstacle for brand protection and fraud research, and it makes reaching the registrant harder for legitimate advertisers and investors too. Workarounds: (1) use the registrar's anonymous mail relay, (2) request data from the registry through a legal process (UDRP / court order), (3) get ICANN accreditation for tier-2 RDAP access.
The picture is slightly different for.tr names: data for legal entities (companies, associations, foundations) largely remains visible, but personal data for natural persons (which can also occur under.com.tr) is masked similarly. We cover this in detail in our .tr WHOIS behaviour guide.
DNS Queries and WHOIS Queries Are Not the Same Thing
The phrase whois dns is often confused. WHOIS gives you the registration data of a name (who owns it, when it was registered, which registrar, which nameservers). DNS gives you the resolution data (A, AAAA, MX, TXT, CNAME, NS, SOA records). A domain's nameservers are listed in WHOIS — but you need a separate DNS query to see the actual records hosted on those nameservers.
Any serious website info investigation must cover both layers. For example, a domain showing DNSSEC=signed in WHOIS while no DS record appears in DNS is a configuration drift. For more DNS scenarios, see our What is DNS and How to Change Settings guide.
Bulk Domain Search: Querying at Scale
Manually checking 50-200 different combinations for a brand (the base name plus TLD variations, short forms, alternative spellings) is unrealistic. That's where bulk domain search comes in. Web-based registrar interfaces help with up to 5-10 names; real bulk work happens on the command line.
The script above is a naive starting point — real production runs need parallel queries (xargs -P 4), exponential backoff, and the right WHOIS server picked per TLD. Most registries cap WHOIS queries at 60-200 per hour per source, and IPs that go over get blocked for 5-15 minutes.
Parallel Bulk Queries with RDAP
Because RDAP runs over HTTP, parallelising it with curl + parallel or xargs -P is much easier. The JSON response also makes it simple to drive a state machine via jq.
TLD Categories and How a Domain Name Search Engine Works
A domain name search engine (the modern domain finder tools) doesn't just look at the exact-match name you typed; it also runs a smart suggestion engine. Understanding how those engines work helps you make better buying decisions.
- gTLD (Generic Top-Level Domain) —.com,.net,.org,.info,.biz. Broad usage, the safest choice for a universal brand presence..com still has the highest recall.
- nTLD (New gTLD) — newer extensions rolled out by ICANN after 2013:.app,.dev,.ai,.io,.tech,.design,.cloud,.shop,.agency. Useful for thematic brands; some carry premium pricing.
- ccTLD (Country Code TLD) —.tr,.com.tr,.uk,.de,.fr,.nl,.jp. Strong country-level SEO signal; a query like domain name search uk ranks better when you grab the local ccTLD.
- sTLD (Sponsored TLD) —.gov,.edu,.museum,.aero. Closed extensions tied to specific institutions; registration requires accreditation.
- IDN ccTLD — country extensions written in local scripts, like.中国,.рф,.مصر. Use IDN-aware tooling when researching them.
Modern domain finder engines take your input and run several steps: stem extraction (suffixes stripped), synonym expansion (lexicon and neural embedding), a prioritised TLD list, premium-domain pool checks, expiring/deleted list scanning, and finally an ML-based aesthetic score (length, pronounceability, word boundary). That's the marketing surface; under the hood they still hit the same registry/registrar APIs.
Premium, Expiring and Deleted Domain Pools
The domain world doesn't work on "register a fresh name" alone. Three additional categories matter for any serious domain query process.
- Premium domains — short, generic, or otherwise high-value names priced separately by the registry. Annual cost ranges from ~$100 USD to several thousand; some carry different prices per registrar.
- Expiring auctions — names that haven't been renewed go to auction before deletion. Domain backorder services (DropCatch, SnapNames, NameJet) are critical here.
- Deleted / re-registered — names that have left the deletion queue and returned to the pool. These often carry low SEO authority or unwanted history, so investigate carefully.
- Aftermarket — buying directly from current owners on marketplaces like Sedo, Afternic, Dan, Squadhelp. Most domains held for investment live on these platforms.
When buying from the aftermarket, always check the WHOIS history: investigate whether the domain has appeared on spam lists or been part of a phishing campaign. Google Safe Browsing diagnostic and URLhaus are essential resources for this.
Domain Registration Check: Is a Name Really Yours?
Domain registration check isn't just "is this name registered" — it also asks "was the registration filed correctly under your account?" Three core checks:
- The registrant name/organization on WHOIS/RDAP — does it list your legal entity? (Even with GDPR redaction, it's visible from the registrar dashboard.)
- The admin contact email — is it an address you control? Most transfer flows hinge on a confirmation sent to this address — wrong email = transfer risk.
- The auth code (EPP code) — can you retrieve it from the registrar dashboard? It's required for transfers; if you can't get to it, you don't have full control over the registrar account.
For corporate projects, always register domains under the company account, not an employee's personal email. Plenty of companies have ended up in court trying to recover a domain after an employee left. Best practice: set up a corporate domains@yourcompany.com distribution list and tie all registrar contact fields to it.
Turkey's Market:.tr and.com.tr Ecosystem
When the.tr extension migrated from nic.tr to TRABIS (under BTK) in 2022, Turkey's domain market reshaped. Sub-extensions (com.tr, org.tr, net.tr, edu.tr, gov.tr, av.tr, dr.tr, bel.tr, kep.tr, biz.tr, info.tr, name.tr, tv.tr, gen.tr, web.tr, tel.tr) used to require documentation. Today every accredited registrar connects to the TRABIS portal.
Practical decision matrix: corporate sites should register a .com.tr with documentation (tax certificate, trademark registration, national ID, or a KVKK document). The document-free .web.tr, .gen.tr, .info.tr are appropriate for personal projects. Direct.tr goes to existing.com.tr/edu.tr/.org.tr holders first under priority and then opens to general registration.
For WHOIS queries, whois.nic.tr (TRABIS) is the authoritative server. RDAP support isn't fully rolled out across every extension, so for.tr the classic WHOIS lookup still returns more reliable data.
Reading.tr WHOIS Output
Pricing for.com.tr (including documentation handling and annual renewal) sits around ~₺120-280 / year (about $4-9 USD/year, varies by provider, 2026 data). Direct.tr is in the premium tier; during the priority window it's roughly ₺150-400, and after open registration certain names can be priced as high premiums.
Domain Naming Strategy
Tooling aside, picking a domain for a brand is a fuzzy area. Weigh these criteria together:
- Length: 6-14 characters is ideal. Shorter names are premium-priced; longer names invite typos.
- Pronounceability: spoken once, the listener should get it. Avoid names that prompt "is that a Y or a J?"
- No hyphens / no digits: combos like
my-shop-1.comare weak for SEO and recall. - Trademark conflicts: confirm no overlap with registered marks in your target market. TMview and the WIPO Global Brand Database are free.
- Social handle consistency: check whether the same name is available on Twitter/X, Instagram, LinkedIn, GitHub (Namechk, KnowEm and similar tools).
- History check: research what the name hosted previously via WHOIS history (Wayback Machine + DomainTools).
- Multilingual sensitivity: confirm the name doesn't carry an unfortunate meaning in other languages.
From an SEO standpoint, picking a strong brand name beats a weak exact match domain over the long run, even if the brand doesn't carry exact keywords. We also recommend our how search engines work and digital marketing channels guides.
Domain Search APIs: Programmatic Lookups
When you build a SaaS, e-commerce platform, or marketing automation, WHOIS/RDAP lookups must run programmatically. Common API types:
- Public RDAP gateway (rdap.org, rdap-bootstrap) — free, rate-limited (~60-100 queries/hour/IP), no authentication.
- Registrar APIs (Namecheap API, Name.com API, Hover, OpenSRS) — registration + availability + DNS management on one API. API key required.
- Registry-level API (over EPP) — accredited registrars only; authenticated via SSL client cert.
- WHOIS aggregator API (WhoisXML API, JsonWhoisAPI) — combined gTLD + ccTLD data, rich parsing, historical records. Roughly $50-500 USD/month.
- DNS API (Cloudflare API, Route 53 API, AWS Route 53 Resolver) — for DNS-side lookups and changes only.
In production you must handle rate limits, retries, exponential backoff, and especially honour the Retry-After header on 429 responses. Rather than rolling your own, lean on open-source libraries.
Domain Hijacking and How to Defend
Domain hijacking is the unauthorized takeover of a domain — disastrous in financial, reputation, and operational terms. The most common attack vectors:
- Registrar account takeover — a weak or leaked password gives access to the registrar dashboard.
- Email compromise — the domain admin's email is taken over and used to approve the transfer.
- Social engineering — registrar support staff are tricked into approving a transfer or nameserver change.
- DNS hijacking — the DNS provider is compromised without touching the registrar (e.g. the 2019 Sea Turtle campaign).
- Subdomain takeover — an abandoned CNAME target gets claimed by someone else (common with Heroku, GitHub Pages, S3 buckets).
- Expired domain capture — a name that wasn't renewed gets snapped up by a malicious actor after it returns to the pool.
Defensive layers: mandatory 2FA on the registrar account (hardware key preferred), domain-level EPP locks, registrar lock + registry lock combined, DNSSEC signing, multi-factor approval at the DNS provider, alarms on critical DNS changes, an expired tracker (calendar + monitoring), and regular audits of your subdomain inventory.
DNSSEC, CAA and Domain Security
DNSSEC (DNS Security Extensions) cryptographically signs DNS responses. The resolver builds a chain of trust from the registry up to the root anchor; even if a man-in-the-middle injects a poisoned reply, the signature won't validate and it's rejected. Every major TLD (.com,.net,.org,.io,.tr) supports DNSSEC.
CAA (Certification Authority Authorization) records specify which CAs are allowed to issue certificates for the domain. If an attacker tries to obtain a fake cert from another CA, the CAA check stops them. Best practice: explicitly list the CA you use (Let's Encrypt, DigiCert, Sectigo).
For end-to-end coverage on the SSL/TLS side, see our HTTPS and TLS 1.3 guide, our Let's Encrypt guide for certificate issuance, and the broader attack surface in OWASP Top 10 2026.
Web-Based Domain Search Tools
The command line isn't always at hand. Here are the most reliable, vendor-neutral web tools:
- ICANN Lookup (lookup.icann.org) — the most authoritative source for gTLDs, with RDAP support. Ad-free.
- Who.is — WHOIS + RDAP + DNS + IP + nameserver in one interface, with a snapshot of historical data.
- DomainTools — premium WHOIS history and passive DNS, especially valuable for brand-protection teams.
- MXToolbox — light on WHOIS but rich on DNS health, blacklist, and mail-server analysis.
- DNSViz — unmatched at visualising the DNSSEC chain; surfaces config errors instantly.
- HackerTarget WHOIS — simple, API-friendly, fits headless workflows.
- VirusTotal — an extra layer for spotting whether a domain has been flagged as malicious.
Our own WHOIS lookup tool and DNS lookup tool also offer fast checks; in addition, the SSL Check tool is handy for chain validation.
Regional Markets: Domain Name Search UK Example
A localized domain name search uk query has different things to watch for than the Turkish market. .uk and .co.uk are managed by Nominet (the registry). You use Nominet's official WHOIS interface and the whois.nic.uk WHOIS server. After.uk opened in 2014, existing.co.uk holders got priority — a similar mechanism applies to.tr.
Watch out in regional markets: some ccTLDs require local residence or a local presence (a local contact address). For example,.ca needs a Canadian connection,.au requires an ABN. If you're building a global investment portfolio, don't pick a registrar without understanding these constraints.
Whois Site Checks: Phishing and Brand Protection
The day-to-day job of a brand protection team includes monitoring suspicious typo variants of your brand. Variants like amaz0n.com, arnazon.com, amazon-secure-login.com show up regularly in phishing campaigns.
Bulk-scan that list with RDAP/WHOIS and you can build a table of which variants are registered, who owns them, and where their nameservers point. For the suspicious ones, you can file a UDRP (Uniform Domain-Name Dispute-Resolution Policy) claim through WIPO.
Wayback Machine and Domain History
Before you buy a domain, checking its history on the Wayback Machine is standard procedure. How it changed over the years, what content it hosted, whether it has a spam or adult-content past — all of that matters for SEO.
The ideal: a clean history, consistently used by the same person/brand, with content that stayed coherent over the years. Red flags: sudden ownership changes, parking pages, lots of different languages/themes, redirect chains, malware warnings.
Domain Transfer and the EPP Code
A domain transfer has four steps: (1) unlock the transfer at the source registrar, (2) retrieve the auth code (EPP code), (3) start the transfer at the destination registrar, (4) approve via email and the registry processes the transfer. Total time is 5-7 days; in many cases the destination registrar can speed it up if requested (FOA — Form of Authorization).
Per ICANN policy, no new transfer can be initiated within the 60 days before or after a transfer. Plan for that 60-day lock window after any new registration or transfer. For details, see our domain registration guide and the ICANN Transfer Policy documents.
Domain Renewal and Lifecycle
The critical dates in a domain's lifecycle — especially for the domain registration check routine — break down as follows:
- Active: renewed and operating normally.
- Expiration date: active use ends if the renewal isn't paid.
- Auto-renew grace period (0-45 days): the registrar attempts auto-renewal; if successful, the domain returns to active. Most registrars suspend DNS resolution during this window.
- Redemption Grace Period (RGP, 30 days): restorable for a steep restore fee (~$80-150 USD).
- Pending Delete (5 days): no way back; the name is about to drop into the pool.
- Released to public pool: open to re-registration. Backorder services and drop-catch bots take over here.
Recommended corporate policy: multi-channel alarms at minimum 30/60/90 days out, registrar auto-renew with two payment methods on file (a backup if the card declines), alerts to the domains@ distribution list, and SSL certificates synced to expire 60 days before the domain itself.
DNS-Based Domain Information: A Bigger Picture
In a serious website info investigation, the signals beyond WHOIS/RDAP carry plenty of weight:
- SOA record — primary nameserver, admin email (a backup-access hint), serial number (DNS update frequency).
- NS records — how many nameservers, which DNS provider (Cloudflare, AWS Route 53, Google Cloud DNS, NS1, self-hosted BIND).
- MX records — mail infrastructure (Google Workspace, Microsoft 365, Zoho, self-hosted).
- TXT/SPF/DKIM/DMARC — mail security policies.
- CAA — certificate authority policy.
- HTTP headers — Server, X-Powered-By, Via headers can leak technology details.
- SSL certificate — Let's Encrypt vs an enterprise CA, validity period, SAN list (cross-domain hint).
- Reverse DNS / PTR — tells you which name an IP is associated with.
That single chain produces a comprehensive domain info report on a name in under 60 seconds. You can pipe the result into CSV/JSON and hand it to marketing, procurement, or security.
Anti-Bot and Anti-Automation Measures
WHOIS and RDAP services are constantly abused: spam harvesters, brand-spam bots, and fraud trackers query them non-stop. Registries and registrars limit this in three layers:
- Per-IP rate limits — over 60-200 queries per hour earns a 5-15 minute ban.
- Captcha gateway — hCaptcha/reCAPTCHA on the web interface.
- API key requirement — RDAP tier-2 access requires accredited querier status.
- Contractual layer — bulk data needs a separate contract with ICANN or the registry (Verisign Domain Health, a TRABIS license for.nic.tr).
When you build your own domain finder tool, respect those limits: an aggressive bot lands on the blocklist and your entire server IP can lose query rights for weeks. The token bucket / sliding window patterns from our API rate limiting guide work just as well on your own side.
Designing a Mini Domain Finder Service
If you need a domain finder internally (say, generating brand suggestions for the marketing team), build it in three layers:
- Suggestion engine — a wordlist plus suffix appending (lab, hub, ly, io) plus a brandable name generator (Markov chain or a small language model).
- Availability checker — RDAP-first, WHOIS as fallback; cache results in Redis for 6-12 hours.
- Quality scorer — length, pronounceability, trademark conflicts (TMview API), social handle availability, premium-price estimation.
At production grade you'll want Redis caching, API key rotation, queue-based bulk processing, and granular rate limiting. Our Redis fundamentals and Express middleware pattern guides come into play here.
Common Mistakes and Pitfalls
- Trusting a single registrar — prices can vary by 30-50%; check pricing and availability across 2-3 providers in parallel.
- Ignoring premium warnings — some registrar UIs show premium domains at the standard price and only reveal the truth at checkout; stay alert all the way through.
- Leaving auto-renew off — even when a card is invalid, the registrar makes 1-2 retries; with auto-renew off, no retries happen at all.
- Skipping WHOIS history — you might be buying a domain previously used in spam or phishing.
- Forgetting DNS changes — failing to budget the 24-72 hour propagation window after registration.
- Neglecting trademark registration — owning the domain doesn't grant trademark protection; you also need to file with TÜRKPATENT/EUIPO.
- Registering under an old email — if a company employee leaves or a freelance project ends, the email becomes inaccessible and control of the domain is lost.
Domain Investing (Domaining): A Brief Look
Some users buy domains purely to resell them later (domaining). The discipline has its own toolkit: Estibot and GoDaddy GoValue for value estimates, Namebio for sales-history research, DropCatch / SnapNames / NameJet for tracking expired auctions, and listings on marketplaces like Squadhelp / Brandbucket.
This guide isn't an investment-strategy guide; that said, one note: domain investing is a significant asset class for tax and legal purposes. Ignoring KVKK, tax law (capital gains on intangible assets), or trademark conflicts can cost dearly.
Glossary: Quick Reference
- Registry — the organization that runs a TLD (Verisign for.com, PIR for.org, ICANN's TRABIS for.tr).
- Registrar — the accredited company that sells domains to end users (Namecheap, Hostinger, Name.com).
- Registrant — the end user / organization that registers the domain.
- Reseller — a third party selling under a registrar.
- EPP — the standard protocol between registrar and registry (Extensible Provisioning Protocol).
- DNS — the distributed system that translates names to IPs.
- Nameserver (NS) — a server that answers DNS queries for a domain.
- Glue record — an NS IP held at the registry layer (mandatory when the NS lives under its own domain).
- WHOIS — the older plain-text registration query protocol.
- RDAP — the new JSON-based registration query protocol over HTTPS.
- UDRP — the domain-name dispute resolution procedure.
- Backorder — a service that grabs unrenewed domains automatically.
- Drop-catch — millisecond-precision capture the moment a domain drops.
- Premium / standard / promo — pricing categories.
Local Providers in Turkey
A whois sc or who is sc query usually points to local providers' pages focused on.com.tr and.tr (sc = short for sorgu / site check). Local registrars in Turkey include İsimTescil, Natro, Turhost, GuzelHosting, Radore resellers, Doruk, and ihs Telekom. Each operates at a different SLA, panel quality, and price level.
Criteria when picking a local registrar: TRABIS license (official accreditation), 2FA-enabled panel, EPP code self-service, ICANN dispute support, on-time invoicing, support response time, and bundled free services (DNS panel, free SSL brokerage, mail forwarding). Global players (Namecheap, Hostinger, Cloudflare Registrar, Porkbun) typically deliver sharper pricing on the gTLD side.
Cost Structure (Approximate, Varies by Provider, 2026)
- .com per year: $8-15 USD standard, ~$21 USD wholesale (Verisign).
- .net per year: $10-15 USD.
- .org per year: $10-15 USD.
- .io per year: $35-50 USD.
- .ai per year: $55-110 USD (.ai ccTLD has a high wholesale price).
- .app,.dev per year: $15-25 USD (Google's Charleston Road Registry).
- .co per year: $25-35 USD.
- .com.tr per year: ₺120-280 (about $4-9 USD).
- Direct.tr: standard band ₺200-500, with premium names going past ₺1000.
- Privacy protection: free at most major registrars; some charge $5-10 USD/year.
- RGP restore: $80-150 USD (gTLD); varies by provider for.tr.
Discounts on multi-year prepayments usually fall in the 5-15% band. Multi-year prepayment also lowers renewal risk — even if your card stops working, you stay alive for another year.
Domain Search and SEO Impact
Domain choice doesn't dramatically move the SEO needle on its own, but it has multi-layered indirect effects. Our Technical SEO Checklist 2026, Core Web Vitals 2026, and website optimization guides offer an integrated view.
- ccTLD use clarifies local search targeting (.tr for Turkey,.uk for the UK).
- Domain age isn't a ranking factor on its own, but older domains often have a broader backlink profile.
- Penalty history matters; a domain that took a manual or algorithmic penalty can take months to recover.
- HTTPS is mandatory; right after registering a new domain, install Let's Encrypt SSL the same day.
- www vs non-www canonicalization — pick one variant and 301-redirect the other.
Case Study: 60-Minute Domain Discovery for a Brand
A practical scenario: end-to-end domain discovery for a new B2B SaaS brand in 60 minutes. Here's the step-by-step workflow.
- 0-10 min: Generate a pool of 30-50 names from the target sector, persona, and tone. Mix Brandbucket, Squadhelp, and manual brainstorming.
- 10-25 min: Bulk-scan the top 15 names against 10 different TLDs via RDAP/WHOIS. Flag the available, reasonably-priced combinations.
- 25-40 min: Check the history of remaining candidates on the Wayback Machine. Drop anything with a spam past.
- 40-50 min: Trademark conflict scan: TMview + WIPO + USPTO TESS. Drop anything that conflicts with a registered mark.
- 50-55 min: Social handle check (Twitter/X, Instagram, LinkedIn, GitHub). Pick those with consistent availability.
- 55-60 min: Share the top 3 candidates with stakeholders and set a 24-hour decision window.
At the end of this process you'll have 1-3 clear candidate domains. Once a decision is made, log into the registrar dashboard, activate the locks, set up 2FA, configure alarms. Register under corporate ownership (not someone's personal email). Add SSL auto-renewal. Write CAA + DMARC + SPF policies the same day.
Edge Cases You'll Encounter
- Punycode IDN — names with Turkish characters (e.g.
çiçekçi.com) register as their ASCII equivalentxn--cieki-pta1da.com. WHOIS queries accept both forms, but the printed output may be Punycode. - Trademark Clearinghouse (TMCH) Sunrise — registered trademark holders get early-access priority during new gTLD launches. Domains released after the sunrise period carry a higher dispute risk.
- EPP grace billing — some registrars cap refund requests within 5 days to prevent abuse of the renewal + refund (AGP — Add Grace Period) combination.
- Hyphenated brand attack — a variant with a hyphen in the middle of your brand (paypal-secure.com) is the kind of name you should defensively register.
- Subdomain takeover — abandoned Heroku/GitHub Pages CNAME targets can be claimed by malicious third parties; run regular inventories.
Monitoring: Domain Monitoring Services
Buying a domain isn't the end of the job — it needs continuous monitoring. The targets of monitoring: renewal date, status changes (locks being lifted!), nameserver changes, SSL expiry, DNS drift, blacklisting.
For more comprehensive monitoring, services like Datadog Synthetic, UptimeRobot, and StatusCake combine HTTP, WHOIS, and SSL checks in one dashboard. If you prefer self-hosted, Uptime Kuma plus a cron job does the job.
Checklist: Before Registering a New Domain
- Availability checked against at least two sources (registrar + RDAP).
- No premium-price trap (the price stayed steady right through to checkout).
- WHOIS history scanned via Wayback, no bad past.
- Trademark conflicts researched on TMview + WIPO.
- Social handle availability checked on Namechk.
- A defensive multi-TLD strategy decided (.com +.net or.com + ccTLD).
- Registrar 2FA on; registered with a corporate email.
- Auto-renew + a backup payment method configured.
- EPP locks (transfer, update, delete) activated.
- DNS / SSL / mail records configured the same day.
- Monitoring (uptime + WHOIS + SSL) set up.
- 60-day lock window factored into planning (no emergency transfers possible).
Don't consider a domain truly "acquired" until 100% of this list is checked. Recovering a corporate domain lost over a missed item is both expensive and slow.
References and Further Reading
- ICANN — Internet Corporation for Assigned Names and Numbers
- ICANN Lookup (RDAP gateway)
- rdap.org — public RDAP gateway
- RFC 3912 — WHOIS Protocol
- RFC 7480 — RDAP HTTP Usage
- RFC 7484 — RDAP Bootstrap
- ICANN EPP Status Codes
- IANA Root Zone Database
- Wayback Machine
- TMview — EU trademark search
- WIPO Global Brand Database
- DNSViz — DNSSEC visualization
- crt.sh — Certificate Transparency search
Related Articles
- What is a Domain Name?.com Names and WHOIS Lookup
- Domain Lookup Tools: WHOIS, RDAP and DNS Guide
- What is DNS and How to Change Settings
- Free SSL Setup with Let's Encrypt
- HTTPS and TLS 1.3 Guide
- OWASP Top 10 2026
- Technical SEO Checklist 2026
- Page Speed and Core Web Vitals 2026
- API Rate Limiting Strategies
- WHOIS Lookup Tool
- DNS Check Tool
- SSL Check Tool
For help with WHOIS/RDAP query automation, brand protection monitoring, DNS architecture, and SSL/DNSSEC setup, get in touch