What a user-agent string actually tells you
Every time a browser, crawler, or app requests a web page it sends a User-Agent (UA) header — a single line of text that identifies the software, its version, the operating system, and often the device. Servers read this string to decide which HTML, CSS, or JavaScript to send, which is why the same URL can look different on a phone and a desktop. A user-agent parser turns that cryptic string into structured, human-readable facts instead of a wall of characters.
How the parser breaks a UA down
Modern user-agent strings bundle several layers: the browser (Chrome, Safari, Firefox, Edge…) and its version, the rendering engine that powers it (Blink, WebKit, Gecko), the operating system (Windows, macOS, iOS, Android, Linux), and — on phones and tablets — the device vendor and model. This tool runs the well-maintained ua-parser-js engine entirely in your browser to extract each layer, so you get a clean card for the browser, engine, OS, and device without uploading anything.
Spotting bots and search crawlers
Not every UA comes from a person. Search engines send crawlers like Googlebot and Bingbot, and countless other bots scan the web for indexing, monitoring, or spam. This parser flags crawler and bot user-agents immediately, so you can separate automated traffic from real visitors — useful for analytics, rate limiting, and security triage. Because detection runs locally, you can check a suspicious string without sending it anywhere.
See exactly what your browser broadcasts
Beyond parsing pasted strings, the tool reads the user-agent your own browser is sending right now and pairs it with live environment details — platform, language, screen size, CPU threads, and privacy signals like Do Not Track. It's a quick, privacy-focused way to understand the digital fingerprint you expose on every request, and a reminder of why client-side, no-upload tools keep that information on your machine.
- 01
- Parse any user-agent string in real time
- 02
- Browser, version, engine & OS breakdown
- 03
- Device type, vendor & model detection
- 04
- Colour-coded raw UA anatomy highlighter
- 05
- Bot, crawler & headless/automation detection
- 06
- Live Client Hints (navigator.userAgentData) + high-entropy values
- 07
- Auto-detects and displays your own UA & environment
- 08
- Copy any field or export the full JSON


