/*
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": "ClaudeBot 1.0/Other",
"ua_family": "ClaudeBot",
"ua_version": {
"major": 1,
"minor": 0,
"patch": 0,
"summary": "ClaudeBot 1.0"
},
"os_family": "Other",
"os_version": {
"major": 0,
"minor": 0,
"patch": 0,
"summary": "Other"
},
"ua_type": null,
"bot_info": {
"name": "Generic Bot",
"category": null,
"url": null,
"vendor": {
"name": null,
"url": null
}
},
"os_meta": {
"name": null,
"short_name": null,
"version": null,
"platform": null
},
"ua_rendering_engine": null,
"ua_rendering_engine_version": {
"major": null,
"minor": null,
"patch": null,
"summary": null
},
"device": {
"is_mobile": false,
"is_tablet": false,
"is_desktop": true,
"brand": null,
"model": null
},
"client": {
"bot": true,
"user": false
}
}