/*
Welcome to the useragent.app UA parsing API
Let's get started!
*/
/*Request*/
curl https://api.useragent.app/parse?key=YOUR_KEY_HERE&ua=RAW_USER_AGENT_STRING
/*Response*/
{
"client_summary": "IE 11.0/Windows 10",
"ua_family": "IE",
"ua_version": {
"major": 11,
"minor": 0,
"patch": 0,
"summary": "IE 11.0"
},
"os_family": "Windows",
"os_version": {
"major": 10,
"minor": 0,
"patch": 0,
"summary": "Windows 10"
},
"ua_type": "browser",
"bot_info": {
"name": null,
"category": null,
"url": null,
"vendor": {
"name": null,
"url": null
}
},
"os_meta": {
"name": "Windows",
"short_name": "WIN",
"version": "10",
"platform": "x64"
},
"ua_rendering_engine": "Trident",
"ua_rendering_engine_version": {
"major": "7",
"minor": "0",
"patch": null,
"summary": "Trident 7.0"
},
"device": {
"is_mobile": false,
"is_tablet": false,
"is_desktop": true,
"brand": null,
"model": null
},
"client": {
"bot": false,
"user": true
}
}