원클릭으로
ip-lookup
Get geolocation, ISP, and network info for any IP address using ip-api.com.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get geolocation, ISP, and network info for any IP address using ip-api.com.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
Network-wide ad and tracker blocking at the DNS level. A Pi-hole alternative that runs directly on your machine as an OpenClaw skill. No separate h...
agentplace's autonomous marketing experiments. Use when agentplace wants to try new content, test hooks, track what works, and iterate independently. Covers X posting, TikTok experimentation, and growth tracking.
Generates clean API documentation from code, endpoints, or descriptions — OpenAPI, markdown, or README format
Generates mock API responses with realistic fake data from OpenAPI specs or plain descriptions
Generates professional system architecture diagrams (Mermaid flowcharts, sequence diagrams, C4 models, deployment views) and Architecture Decision Records from plain English descriptions
| name | ip-lookup |
| description | Get geolocation, ISP, and network info for any IP address using ip-api.com. |
Get geolocation, ISP, and network info for any IP address using ip-api.com.
Category: security API Key Required: No
Base URL: http://ip-api.com (HTTP only on free tier)
curl -s "http://ip-api.com/json/8.8.8.8"
Returns: country, region, city, lat/lon, timezone, ISP, org, AS number.
curl -s "http://ip-api.com/json/"
curl -s -X POST "http://ip-api.com/batch" \
-H "Content-Type: application/json" \
-d '["8.8.8.8","1.1.1.1","208.67.222.222"]'
curl -s "http://ip-api.com/json/8.8.8.8?fields=country,city,isp,query"
User: "Where is 1.1.1.1 located?" → Query ip-api. Reply: "1.1.1.1 is operated by Cloudflare, located in San Francisco, US."
User: "Look up these IPs: 8.8.8.8, 1.1.1.1" → Use batch endpoint. Show country, city, ISP for each.