User-Agent Parser
NetworkParse a browser User-Agent string into browser, engine, OS, and device type
Paste a User-Agent header value and get back the browser name and version, the rendering engine, the operating system, and a device type (desktop, mobile, tablet, or bot). It works by pattern matching against the well-known token formats every major browser and crawler puts in its UA string, the same technique used to check what a support ticket's UA actually means or to sanity-check a bot's identity in server logs. It is not an exhaustive UA database like a commercial UA-parsing service: obscure browsers, heavily customized embedded webviews, or unusual bot strings may come back with some fields marked Unknown rather than a guessed value.
How to use User-Agent Parser
- 1.Paste a full User-Agent header value into the input, or pick one of the sample strings to see the format.
- 2.Read off the parsed browser, engine, OS, and device type in the results grid.
- 3.Check the device type badge (desktop, mobile, tablet, or bot) to quickly see how a request identified itself.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/user-agent-parser \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"ua":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"}'Get an API key from your dashboard · Full API docs →