Browser
Mozilla/5.0 ... Chrome/148.0.0.0 Safari/537.36
Shows browser, engine, operating system, and mobile hints when they are present.
Parse browser example
Request tool
Paste a browser, crawler, app, or bot user-agent string and see the parsed browser, engine, operating-system, mobile, and bot signals.
Reference
Advertisement
Overview
The user-agent parser turns a raw user-agent string into readable browser, engine, operating-system, mobile, and bot signals.
It helps with debugging browser compatibility, checking crawler traffic, and understanding request logs. User-agent strings can be spoofed, so treat the result as a hint. The user-agent guide explains the limits.
Examples
Browser
Mozilla/5.0 ... Chrome/148.0.0.0 Safari/537.36
Shows browser, engine, operating system, and mobile hints when they are present.
Parse browser example
Bot
Googlebot/2.1
Shows crawler-style detection when a bot token is recognizable.
Parse bot example
Results
Browser and engine values come from the recognizable tokens in the string. Mobile and bot values are hints from parser rules, not a security decision. The raw user-agent is included so you can compare the parsed fields with the original log value.
Boundaries
Clients control their user-agent strings. Browsers can freeze, shorten, or spoof values, and automated clients can pretend to be common browsers. Do not use user-agent parsing as the only fraud, rate-limit, or access-control signal.
Next steps
Advertisement