Skip to main content
DevTools24

User Agent Parser

Parse user agent strings to identify browser, operating system, device type, and rendering engine.

Examples:

User Agent Strings - Technical Details

User agent strings identify the browser, device, and OS making a request. They're used for analytics, content adaptation, and bot detection. Note that user agents can be spoofed, so don't rely on them for security.

Command-line Alternative

# Get your user agent with curl\ncurl -s httpbin.org/user-agent\n\n# See all headers including user agent\ncurl -I https://example.com

Reference

View Official Specification