بنقرة واحدة
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.