con un clic
ip-lookup
Look up public IP address and geolocation information for any IP or your own
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Look up public IP address and geolocation information for any IP or your own
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Create vertical short-form videos from YouTube with auto-highlights, subtitles, and thumbnails
Delivers a personalized morning briefing with tasks, emails, calendar events, news, and system status.
Intelligent email management with auto-classification, bulk processing, and smart replies
Complete email OAuth authentication flows interactively via Telegram chat
Configure OAuth 2.0 authentication for Gmail, Outlook, or Yahoo email accounts
Send SMS via Alibaba Cloud (阿里云短信)
Basado en la clasificación ocupacional SOC
| name | ip-lookup |
| description | Look up public IP address and geolocation information for any IP or your own |
| version | 1.0.0 |
| author | OpenIntentOS |
| tags | ["network","utility","geolocation"] |
| requires | {"bins":["curl"],"env":[]} |
| tools | [{"name":"lookup","description":"Look up geolocation and network info for an IP address (or own public IP if no argument given)","script":"./lookup.sh","args":[{"name":"ip","type":"string","required":false,"description":"IP address to look up. Omit to look up the machine's own public IP."}]}] |
Queries ipinfo.io to retrieve geolocation and network information for any IP address. When called without an argument it returns information about the machine's own public IP.
# Own public IP
./lookup.sh
# Specific IP
./lookup.sh 8.8.8.8
./lookup.sh 1.1.1.1
Returns JSON:
{
"ip": "8.8.8.8",
"hostname": "dns.google",
"city": "Mountain View",
"region": "California",
"country": "US",
"org": "AS15169 Google LLC",
"timezone": "America/Los_Angeles",
"loc": "37.3860,-122.0840",
"postal": "94035"
}
jq is used for formatting when available; raw JSON is returned otherwise.