Request Header Parser Microservice

This is a simple microservice that parses the request header and returns the IP address, language, and software of the user's browser.

Send a request to /api/whoami to get information about the user's browser.

Example Usage

/api/whoami

Example Output

{ "ipaddress": "127.0.0.1", "language": "en-US", "software": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36" }

Try yourself