CLI Tools / API
Check any IP from your terminal with curl — no browser needed. CLI/script requests to this site get plain text automatically (browsers still get the web page).
curl quickref
curl ipyou.netyour IP details (plain text)curl ipyou.net/ipjust the IP — ideal for scriptscurl ipyou.net/1.1.1.1look up a specific IPcurl ipyou.net/myipsame as curl to the site rootJSON API (for scripts / apps)
curl ipyou.net/api/v1/details/1.1.1.1full JSON for a given IPcurl ipyou.net/api/v1/myip/detailsfull JSON for your own IPScript examples
# store your public IP in a variable MYIP=$(curl -s ipyou.net/ip) # refresh your IP every 5s (watch egress changes) watch -n5 "curl -s ipyou.net/ip"
Note: Plain-text / bare-IP endpoints are never cached, so switching network / proxy returns fresh results instantly; JSON details are cached per IP for speed.
Browser shortcuts
BookmarkletLookup IP
Drag to your bookmarks bar. Select an IP on any page, then click it to look it up.
Userscript (Tampermonkey)
Install Tampermonkey, create a new script and paste this. Select an IP → menu → “Lookup selected IP”.
// ==UserScript==
// @name IP优 快捷查询
// @namespace https://ipyou.net/
// @version 1.0
// @match *://*/*
// @grant GM_registerMenuCommand
// ==/UserScript==
GM_registerMenuCommand('查选中的 IP', function () {
var s = (window.getSelection() + '').trim();
window.open('https://ipyou.net/' + encodeURIComponent(s), '_blank');
});More tools
Batch Check
Paste many IPs; see type / risk / scenarios / blocklist at once
Compare IPs
Two IPs side by side — spot differences when switching proxies
Env Check
Egress IP vs timezone / language, WebRTC leaks — essential for proxy accounts
ASN Lookup
Holder org, prefix list and BGP up/downstream neighbors by ASN
Wiki
Concepts: IP geolocation, blocklists, risk score, residential / datacenter
IP geolocation · risk · blocklist