Welcome to epicmaxim.net
Home
Tools
Browse tools...
MD5
Base64
IP2Country
UserAgent
URL Encode/decoder
JSON linter
Strings.split
CSV to table
JSON to table
JS Playground
Movies
beta
Javascript Playground
Testing javascripts was never that easy.
#js_output
Click
to execute the code.
let ua = "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"; let request = $.ajax({ url: "https://api.epicmaxim.net/useragent?text=" + encodeURIComponent(ua), method: "GET", data: text, dataType: "json" }); request.done(function(data) { // Outputs browser and OS version $('#js_output').html("You are using " + data["name"] + " " + data["version"] + " on " + data["os"] + " " + data["os_version"]); });