realtime-register.ch

Analisi sito web realtime-register.ch

 Generato il Febbraio 15 2026 21:51 PM

Statistiche non aggiornate? AGGIORNA !

Il punteggio e 54/100

SEO Content

Title

Realtime Register | The Domains & Digital Security Experts

Lunghezza : 58

Perfetto, il tuo title contiene tra 10 e 70 caratteri.

Description

Your B2B gateway to 2000+ TLDs, SSL certificates, and essentials like Plesk & SiteLock. Experience true speed and reliability with our robust platform and API.

Lunghezza : 159

Grande, la tua meta description contiene tra 70 e 160 caratteri.

Keywords

realtime register, domain name registrar, domain registration, domain transfer, domain renewal, domain management, domain extensions, domain pricing, domain support, domain registrar, domain reseller, domain prices, white-label solutions, ssl certificates, plesk licenses, domain abuse, digital security, cost price, domain tools, b2b, sitelock licenses

Buono, la tua pagina contiene meta keywords.

Og Meta Properties

Questa pagina non sfrutta i vantaggi Og Properties. Questi tags consentono ai social crawler di strutturare meglio la tua pagina. Use questo generatore gratuito di og properties per crearli.

Headings

H1 H2 H3 H4 H5 H6
1 8 6 12 1 15
  • [H1] The Domains & Digital Security Experts
  • [H2] Premium DNS: For only €3 per zone!
  • [H2] GO!ORANGE: Domains at cost price!
  • [H2] ') .addClass('adac-js__result-title') .text('Our suggestions:') .appendTo(target); } processResult(domainResult, target); }; function clearResults () { if (adac.resultsElement) { while (adac.resultsElement.firstChild) { adac.resultsElement.removeChild(adac.resultsElement.firstChild); } } if (adac.suggestionElement) { while (adac.suggestionElement.firstChild) { adac.suggestionElement.removeChild(adac.suggestionElement.firstChild); } } } adac.processInput = function(event, value) { clearResults() // Don't process regular input whenever the user is entering a prompt. if (inputIsPrompt(value)) return domainSuggestionsEl.classList.add('busy') domainResultsEl.classList.add('busy') if (value !== '') { if (adac.debug) { console.log('Input given: ' + value); } var categories = adac.getSelectedCategories(); var command = { api_key: adac.CUSTOMER_API_KEY, action: 'input', data: {tld_set_token: adac.TLD_SET_TOKEN, input: value, categories: categories} }; adac.sendCommand(command); if (adac.resultsContainer.style.display === "none") { adac.resultsContainer.style.display = "block"; } } else { if (adac.resultsContainer.style.display === "block") { adac.resultsContainer.style.display = "none"; } } return false; }; adac.addDomainResult = function (domainResult) { var target = adac.resultsElement; var h2 = $(target).find('h2'); domainResultsEl.classList.remove('busy') if (!h2.length) { var h2 = $('') .addClass('adac-js__result-title') .text('Available domain names:') .appendTo(target); } processResult(domainResult, target); }; function getPrice (amount) { if (typeof amount !== 'number') { return amount } let fractionDigits = 2 if (this.round && String(amount).substr(-2) === '00') { fractionDigits = 0 } return parseFloat(amount / 100).toFixed(fractionDigits) } function getCurrency (currency) { if (currency) { if (currency === 'EUR') { return '€' } else if (currency === 'USD') { return '$' } else if (currency === 'INR') { return '₹' } else if (currency === 'GBP') { return '£' } else { return currency } } return null } var processResult = function (domainResult, containerElement) { var domainName = domainResult.domain_name, status = domainResult.status tld = domainResult.suffix; var statusMapping = {}; statusMapping[adac.DOMAIN_STATUS_WAITING] = 'Checking...'; statusMapping[adac.DOMAIN_STATUS_AVAILABLE] = 'available'; statusMapping[adac.DOMAIN_STATUS_TAKEN] = 'taken'; statusMapping[adac.DOMAIN_STATUS_INVALID] = 'invalid'; statusMapping[adac.DOMAIN_STATUS_ERROR] = 'No response'; statusMapping[adac.DOMAIN_STATUS_UNKNOWN] = 'unknown'; var statusSpanClass = 'status text-xs-right'; if (status == adac.DOMAIN_STATUS_TAKEN) { statusSpanClass += ' badge badge-info'; } else if (status == adac.DOMAIN_STATUS_AVAILABLE) { statusSpanClass += ' badge badge-success'; } var li = $(containerElement).find('.domain-result-' + domainName.replace(/\./g, '-')); if (!li.length) { if (tld === 'eu' && containerElement.id === 'adac-js-suggestions') { var domainForm = $('') .addClass('domain-option domain-result-' + domainName.replace(/\./g, '-')) .insertAfter( '#adac-js-suggestions .adac-js__result-title' ); } else { var domainForm = $('') .addClass('domain-option domain-result-' + domainName.replace(/\./g, '-')) .appendTo(containerElement); } var domainNameSpan = $('') .addClass('domain-container') .appendTo(domainForm); var domainNameLabel = $('') .addClass('domain') .text(domainName.split('.')[0]) .appendTo(domainNameSpan); var domainNameLabelExtension = $('') .addClass('extension') .text('.' + domainResult.suffix) .appendTo(domainNameSpan); var statusPriceContainer = $('') .addClass('pricecontainer') .appendTo(domainForm); var statusPriceLeftContainer = $('') .addClass('pricecontainerleft mr-3') .appendTo(statusPriceContainer); var domainNameBadges = $('') .addClass('badges') .appendTo(statusPriceLeftContainer); var domainOriginalPrice = $('') .addClass('original-price d-inline-block mr-1 align-middle') .appendTo(statusPriceLeftContainer); var domainPrice = $('') .addClass('price d-inline-block align-middle') .appendTo(statusPriceLeftContainer); var domainAvailable = $('') .addClass('register-transfer d-inline-block align-middle') .appendTo(statusPriceContainer); li = $(containerElement).find('.domain-result-' + domainName.replace(/\./g, '-')); } // Prices if (('type' in domainResult) && (domainResult.type === 'premium')) { li.find('.badges') .html('Premium'); li.find('.pricecontainer .price') .text(getCurrency(domainResult.currency) + ' ' + getPrice(Number(domainResult.price))); li.find('.pricecontainer .original-price') .text(''); } else if (priceList[domainResult.suffix]) { if (priceList[domainResult.suffix].promos && priceList[domainResult.suffix].promos.length) { let anyActive = false for (let i = 0; i < priceList[domainResult.suffix].promos.length; i++) { let promo = priceList[domainResult.suffix].promos[i] let fromDate = promo.fromDate let endDate = promo.endDate let active = false if (Math.floor(Date.now() / 1000) > new Date(fromDate).getTime() / 1000) { active = true } if (endDate) { if (Math.floor(Date.now() / 1000) < new Date(endDate).getTime() / 1000) { active = true } else { active = false } } if (active) { if (promo.price.active) { anyActive = true if (priceList[domainResult.suffix].price) { li.find('.pricecontainer .original-price') .text(getCurrency(priceList[domainResult.suffix].currency) + ' ' + getPrice(Number(priceList[domainResult.suffix].price))); } li.find('.pricecontainer .price') .text(getCurrency(promo.currency) + ' ' + getPrice(Number(promo.price.price))); break; } } } if (anyActive) { li.find('.badges') .html('GO!OrangePromo'); } else if(priceList[domainResult.suffix].price) { li.find('.pricecontainer .price') .text(getCurrency(priceList[domainResult.suffix].currency) + ' ' + getPrice(Number(priceList[domainResult.suffix].price))); li.find('.badges') .html('GO!Orange'); } } else if (priceList[domainResult.suffix].price) { li.find('.pricecontainer .price') .text(getCurrency(priceList[domainResult.suffix].currency) + ' ' + getPrice(Number(priceList[domainResult.suffix].price))); li.find('.badges') .html('GO!Orange'); } } if (status === adac.DOMAIN_STATUS_AVAILABLE) { if (priceList[domainResult.suffix] && priceList[domainResult.suffix].price) { li.find('.register-transfer') .html('Register'); } else { li.find('.register-transfer') .html('Register'); } } else if (status === adac.DOMAIN_STATUS_TAKEN) { if (priceList[domainResult.suffix] && priceList[domainResult.suffix].price) { li.find('.register-transfer') .html('
  • [H2] Register domains at cost price
  • [H2] Worldclass partnerships to power your business
  • [H2] Amazing tools and services for more security, higher efficiency and better returns
  • [H2] Support that puts a smile on your face
  • [H2] Earn more with competitive prices
  • [H3] Try our advanced domain availability checker:
  • [H3] Wholesale domains
  • [H3] Registry Gateway
  • [H3] Platform licensing
  • [H3] Add-on products
  • [H3] All platform features
  • [H4] Wholesale domains, platform licensing, web security, software licenses and more …
  • [H4] More information? Talk to sales!
  • [H4] Domain products
  • [H4] Add-on products
  • [H4] Promotions & MDF
  • [H4] Services
  • [H4] Integration
  • [H4] Resources
  • [H4] About us
  • [H4] Communications
  • [H4] Like being up to date?
  • [H4] Social
  • [H5] Generating suggestions...
  • [H6] Domain products
  • [H6] Add-on products
  • [H6] Services
  • [H6] Platform
  • [H6] Extra services
  • [H6] Transfer service
  • [H6] Transfer goal
  • [H6] Pay less, Sell more
  • [H6] $$ Marketing dollars $$
  • [H6] Knowledge
  • [H6] Tools
  • [H6] Business
  • [H6] Company
  • [H6] Communications
  • [H6] Our story

Images

Abbiamo trovato 57 immagini in questa pagina web.

54 attributi alt sono vuoti o mancanti. Aggiungi testo alternativo in modo tale che i motori di ricerca possano comprendere meglio il contenuto delle tue immagini.

Text/HTML Ratio

Ratio : 14%

Il rapporto testo/codice HTML di questa pagina e inferiore a 15 percento, questo significa che il tuo sito web necessita probabilmente di molto piu contenuto.

Flash

Perfetto, non e stato rilevato contenuto Flash in questa pagina.

Iframe

Grande, non sono stati rilevati Iframes in questa pagina.

URL Rewrite

Buono. I tuoi links appaiono friendly!

Underscores in the URLs

Perfetto! Non sono stati rilevati underscores nei tuoi URLs.

In-page links

Abbiamo trovato un totale di 69 links inclusi 0 link(s) a files

Anchor Type Juice
Status Externo Passing Juice
Login Externo Passing Juice
Get started! Interno Passing Juice
More information Interno Passing Juice
Sign up Interno Passing Juice
More information Interno Passing Juice
What we offer Interno Passing Juice
Wholesale Domains Interno Passing Juice
Registry Gateway Interno Passing Juice
Platform Licensing ICANN registrars Interno Passing Juice
ADAC Domain Suggestions™ Interno Passing Juice
Privacy Protect Interno Passing Juice
Registry Lock Interno Passing Juice
Abuse monitoring Interno Passing Juice
Blackwall Interno Passing Juice
WP Squared Interno Passing Juice
Acronis Cyber Protect Cloud Interno Passing Juice
Atarim Interno Passing Juice
BaseKit Interno Passing Juice
marketgoo Interno Passing Juice
Monarx Interno Passing Juice
Plesk software licenses Interno Passing Juice
SiteLock website security Interno Passing Juice
SSL certificates Interno Passing Juice
WP Guardian Interno Passing Juice
Transfers & Vendor Consolidation Interno Passing Juice
Domain Management as a Service Interno Passing Juice
ICANN Accreditation Services Interno Passing Juice
Realtime Register® Insights Interno Passing Juice
Serious Support Interno Passing Juice
Portal Interno Passing Juice
API integration Interno Passing Juice
3rd party modules / plugins Interno Passing Juice
GitHub Externo Passing Juice
ADAC Domain Suggestions™ Interno Passing Juice
ISproxy / availability checker Interno Passing Juice
Domain Transfer Service Interno Passing Juice
SSL Transfer Service Interno Passing Juice
Vendor Consolidation Interno Passing Juice
Total Cost of Ownership Interno Passing Juice
Multi-brand management Interno Passing Juice
Regular promotions Interno Passing Juice
Special promotions Interno Passing Juice
Custom promotions Interno Passing Juice
Domain Growth Program (DGP) Interno Passing Juice
Marketing Development Funds (MDF) Interno Passing Juice
API documentation Externo Passing Juice
Knowledge base Externo Passing Juice
TLD Metadata Externo Passing Juice
WHOIS Interno Passing Juice
Locate your provider Interno Passing Juice
Terms and conditions Interno Passing Juice
Privacy statement Interno Passing Juice
Payment methods Interno Passing Juice
Contact Interno Passing Juice
Careers Interno Passing Juice
Legal notice Interno Passing Juice
Registrant policies Interno Passing Juice
Blog Externo Passing Juice
News Externo Passing Juice
Events Interno Passing Juice
Purpose and values Interno Passing Juice
Learn more Interno Passing Juice
Contact Interno Passing Juice
Blog Externo Passing Juice
Get the Newsletter Externo Passing Juice
Report abuse Interno Passing Juice
Disclosure Requests Interno Passing Juice
Cookies Interno Passing Juice

SEO Keywords

Keywords Cloud

services domain security platform more ssl service dns business domains

Consistenza Keywords

Keyword Contenuto Title Keywords Description Headings
domain 29
platform 19
domains 18
more 17
security 15

Usabilita

Url

Dominio : realtime-register.ch

Lunghezza : 20

Favicon

Grande, il tuo sito usa una favicon.

Stampabilita

Non abbiamo riscontrato codice CSS Print-Friendly.

Lingua

Non hai specificato la lingua. Usa questo generatore gratuito di meta tags generator per dichiarare la lingua che intendi utilizzare per il tuo sito web.

Dublin Core

Questa pagina non sfrutta i vantaggi di Dublin Core.

Documento

Doctype

HTML 5

Encoding

Non hai specificato il charset per i documenti. Usa questo generatore gratuito di meta tagr per dichiarare il charset dei documenti.

Validita W3C

Errori : 0

Avvisi : 0

Email Privacy

Grande. Nessun indirizzo mail e stato trovato in plain text!

Deprecated HTML

Grande! Non abbiamo trovato tags HTML deprecati nel tuo codice.

Suggerimenti per velocizzare

Eccellente, il tuo sito web non utilizza nested tables.
Molto male, il tuo sito web utilizza stili CSS inline.
Grande, il tuo sito web ha pochi file CSS.
Molto male, il tuo sito web ha troppi file JS (piu di 6).
Perfetto, il vostro sito si avvale di gzip.

Mobile

Mobile Optimization

Apple Icon
Meta Viewport Tag
Flash content

Ottimizzazione

XML Sitemap

Grande, il vostro sito ha una sitemap XML.

https://realtimeregister.com/

Robots.txt

http://realtime-register.ch/robots.txt

Grande, il vostro sito ha un file robots.txt.

Analytics

Non trovato

Non abbiamo rilevato uno strumento di analisi installato su questo sito web.

Web analytics consentono di misurare l'attività dei visitatori sul tuo sito web. Si dovrebbe avere installato almeno un strumento di analisi, ma può anche essere buona per installare una seconda, al fine di un controllo incrociato dei dati.

PageSpeed Insights


Dispositivo
Categorie

Website-SEO-Überprüfung

Website-SEO-Überprüfung e uno strumento di ottimizzazione per i motori di ricerca (seo tool) che serve per analizzare le tue pagine web