# User Agent API
# Info
Retrieve information about the user agent.
Example
{
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
"platform": "macOS",
"browser": {
"name": "Chrome",
"version": "92.0.4515.131"
},
"engine": {
"name": "WebKit",
"version": "537.36"
}
}
API Base URL
https://api.abracadalo.com/userAgent/info 
Outputs
| Name | Type | Description |
|---|---|---|
userAgent | String | Full user agent as received from the client |
platform | String | Identified platform/OS (Possible values: "Windows", "macOS", "Linux", "iPhone", "iPad", "Android", "Other") |
browser.name | String | Identified internet browser (Possible values: "IE", "Firefox", "Chrome", "Safari", "Opera", "Other") |
browser.version | String | Identified browser version |
engine.name | String | Identified engine (Possible values: "Trident", "WebKit", "Gecko", "Presto", "Other") |
engine.version | String | Identified engine version |