Home
Lookup Tools
Analysis
Bulk & Enterprise
Resources
Close

HTTPS Record Service

The HTTPS record (also called HTTPS RR) is a modern DNS record type that enables faster, more secure web connections. It combines connection information with service binding, allowing browsers to connect over HTTPS more efficiently without needing additional DNS lookups or HTTP redirects.

Look Up HTTPS Records

Check HTTPS records for any domain using our free DNS lookup tool.

Look Up HTTPS Records →

What Is an HTTPS Record?

HTTPS records (defined in RFC 9460) provide essential connection parameters for HTTPS services directly in DNS. Benefits include:

HTTPS Record Format

HTTPS records have a priority, target, and optional service parameters:

Basic HTTPS Record

example.com.    3600    IN    HTTPS    1 . alpn="h2,h3" ipv4hint="192.0.2.1"

Priority 1, target is self (.), supports HTTP/2 and HTTP/3, with IPv4 hint.

HTTPS Record Components

Component Description Example
Priority Service priority (0 = alias mode) 1, 2, 10
Target Target hostname (. = self) . or cdn.example.com
alpn Application protocols h2, h3
ipv4hint IPv4 address hints 192.0.2.1
ipv6hint IPv6 address hints 2001:db8::1
port Non-standard port 8443
ech Encrypted Client Hello config (base64 encoded)

Service Mode vs Alias Mode

Service Mode (Priority > 0)

Provides connection parameters for the service:

example.com.    HTTPS    1 . alpn="h2,h3"

Alias Mode (Priority = 0)

Acts like a CNAME but can be used at the apex. Points to another domain:

example.com.    HTTPS    0 cdn.example.net.

This is particularly useful because CNAMEs cannot be placed at the zone apex alongside NS and SOA records.

Common HTTPS Record Configurations

1. Basic HTTP/2 and HTTP/3 Support

example.com.    HTTPS    1 . alpn="h2,h3"

2. With IP Hints

example.com.    HTTPS    1 . alpn="h2,h3" ipv4hint="192.0.2.1" ipv6hint="2001:db8::1"

3. Apex Alias to CDN

example.com.    HTTPS    0 d123.cloudfront.net.

4. Multiple Priorities (Failover)

example.com.    HTTPS    1 primary.example.com. alpn="h2,h3"
example.com.    HTTPS    2 backup.example.com. alpn="h2"

5. With Encrypted Client Hello

example.com.    HTTPS    1 . alpn="h2,h3" ech="AEX+DQBBpQA..."

HTTPS Record Benefits

Browser Support

HTTPS records are supported by modern browsers:

HTTPS Record Best Practices

HTTPS vs SVCB Records

HTTPS records are actually a special case of SVCB records specifically for the "https" service. SVCB is the generic record type; HTTPS is the specialized version for web traffic.

Troubleshooting HTTPS Records

Common issues and solutions:

Check Your HTTPS Records

Use our DNS Record Finder to look up HTTPS records for any domain.

Look Up HTTPS Records →

Related Record Types