Find out your IP address

My IP: If you need to quickly obtain external(public) IP address, which your device uses to send requests from, then simply follow this link: https://sysopnotes.net/myip Response is in JSON format: {“ip”:”11.12.13.14″} Request could be performed from browser, as well as using CURL or another HTTP-client. CURL: curl https://sysopnotes.net/myip JavaScript: fetch(‘https://sysopnotes.net/myip’) .then(response => response.json()) .then(data => […]

Continue reading