CoolFace
Apppublic

ColinBalin/ip-geolocation

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
App README

IP Geolocation API

Resolve any IP address to country, city, ISP, ASN.

Try it above with the example input 8.8.8.8, then read on for production usage.

What this is

A free interactive demo of one endpoint from the GoCreative AI x402 API — a pay-per-call API platform for AI agents (Claude Code, Cursor, custom agents).

  • Endpoint: GET /v1/lookup/ip/{input}
  • Price (production): $0.005 per call
  • Auth: x402 (USDC on Base) — no API keys, no signup
  • Free tier here: 5 calls/day per IP via /demo

Get unlimited access

Fund a Base wallet with $1 USDC and call this endpoint (plus 144 others) without limits:

Use it from your agent

python
import httpx
r = httpx.get("https://api.gocreativeai.com/v1/lookup/ip/8.8.8.8")
print(r.json())

Or natively via MCP — add to ~/.claude/mcp_servers.json:

json
{
  "mcpServers": {
    "gocreative": {
      "url": "https://api.gocreativeai.com/mcp",
      "headers": {"X-Wallet-Key": "0x_YOUR_BASE_WALLET_KEY"}
    }
  }
}

Built by GoCreative AI. Pay-per-call APIs for AI agents.