proxyclaw
Health Uyari
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Uyari
- network request — Outbound network request in scripts/qa_scraper.py
- network request — Outbound network request in scripts/support_ai.py
- network request — Outbound network request in smithery.yaml
Permissions Gecti
- Permissions — No dangerous permissions requested
This tool provides a residential proxy service and SDK designed for AI agents, web scrapers, and data pipelines. It enables users to route their web requests through millions of residential IP addresses to bypass anti-bot protections and geographic blocks.
Security Assessment
Overall risk: Medium. The core function of this tool requires making outbound network requests to its own proxy servers (proxy.iploop.io) and routing your target web traffic through them. While no hardcoded secrets or dangerous OS permissions were detected, the tool requires you to expose your API key to function. Additionally, two Python scripts (qa_scraper.py, support_ai.py) make external network calls. Because this service acts as a proxy, all your web traffic data passes through their infrastructure, meaning you must inherently trust the service provider with the data you are transmitting.
Quality Assessment
The project is highly active, with its most recent push happening today. It uses a standard permissive MIT license and includes a clear, well-documented README. However, community visibility and trust are currently very low. The repository only has 5 GitHub stars, indicating that the project has not yet been widely peer-reviewed or battle-tested by the open-source community.
Verdict
Use with caution: The code itself appears safe and lacks dangerous permissions, but extreme lack of community validation and the inherent privacy implications of routing your traffic through a little-known proxy provider warrant careful consideration before integrating.
ProxyClaw — Residential proxy skill for AI agents. Web scraping, data collection, anti-block. Reddit, X/Twitter, TikTok, YouTube bypass. 2M+ IPs, 195+ countries. pip install iploop-sdk | npm install iploop | clawhub install proxyclaw
ProxyClaw by IPLoop
Residential proxy platform for AI agents, bots & data pipelines — 2M+ residential IPs, 195+ countries, anti-bot bypass.
Install
# Python SDK (coming soon)
# pip install iploop-sdk
# Node.js SDK (coming soon)
# npm install iploop
# OpenClaw skill
clawhub install proxyclaw
Get Your API Key (free)
- Sign up at iploop.io/signup.html — takes 30 seconds
- Get your key from platform.iploop.io → API Keys section
- Set it:
export IPLOOP_API_KEY="your_key_here"
✨ New Format: iploop_{short}_{secret} — single copy-paste, no more customer_id needed!
Free tier includes 0.5 GB — no credit card needed. Or earn unlimited credits by running a Docker node.
Quick Start
Python
from iploop import IPLoop
client = IPLoop(api_key="YOUR_KEY", country="US")
# Anti-bot sites just work
r = client.fetch("https://www.zillow.com/homes/NYC_rb/") # ✅ 1.3MB
r = client.fetch("https://www.walmart.com/browse/electronics") # ✅ 2.5MB
r = client.fetch("https://www.bestbuy.com/site/laptops") # ✅ 847KB
# Country targeting
r = client.fetch("https://example.com", country="DE")
# Sticky session
s = client.session()
r1 = s.fetch("https://httpbin.org/ip")
r2 = s.fetch("https://httpbin.org/ip") # same IP
Node.js
const { IPLoop } = require('iploop');
const client = new IPLoop('YOUR_API_KEY');
const result = await client.fetch('https://example.com', { country: 'US' });
curl
# New format (v2) — single key
curl -x "http://:[email protected]:8880" https://httpbin.org/ip
# Example:
# curl -x "http://:[email protected]:8880" https://httpbin.org/ip
LangChain (AI Agents)
pip install langchain-proxyclaw
from langchain_proxyclaw import ProxyClawTool, ProxyClawScraperTool
from langchain.agents import initialize_agent, AgentType
from langchain_openai import ChatOpenAI
# Single tool usage
tool = ProxyClawTool(api_key="YOUR_KEY")
result = tool.invoke({
"url": "https://example.com",
"country": "US"
})
# Use with an AI agent
scraper = ProxyClawScraperTool(api_key="YOUR_KEY")
agent = initialize_agent(
[scraper],
ChatOpenAI(temperature=0),
agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION
)
agent.run("Find pricing from https://competitor.com/pricing")
📚 LangChain Integration Docs | PyPI
66 Site Presets — 100% Success Rate
Tested 5× back-to-back. Every preset passes every time.
| Category | Sites | Method |
|---|---|---|
| E-commerce | Amazon, eBay, Walmart, Target, BestBuy, Costco, Nordstrom, Newegg, Wayfair, Nike, Shopify, Zappos, ASOS, IKEA, Apple, Samsung | Proxy + Stealth |
| Social | Reddit, Twitter/X, Instagram, TikTok, Pinterest, LinkedIn, Quora, Medium, Twitch | Stealth Mode |
| News | CNN, BBC, NYTimes, Fox News, The Guardian, Yahoo News, Dev.to | Proxy |
| Tech | GitHub, StackOverflow, HackerNews, NPM, PyPI, Coursera | Proxy |
| Real Estate | Zillow, Airbnb, Booking.com, Craigslist | Stealth Mode |
| APIs | YouTube, Stocks, CoinGecko, Spotify, XKCD, SpaceX, Pokemon, Weather, ExchangeRate, RemoteOK | Direct API |
| Other | Wikipedia, IMDb, Steam, Goodreads, Trustpilot, Archive.org, HomeDepot, DuckDuckGo, Bing, Hulu, Microsoft | Proxy + Stealth |
Anti-Bot Bypass
Stealth mode uses advanced browser fingerprinting + residential IPs:
- Bypasses Cloudflare, Akamai, and most anti-bot systems
- 66/66 sites pass (100%) with stealth mode
- Auto-detects stealth capabilities and activates automatically
API
Customer API
Full REST API at https://api.iploop.io/api/v1/ — see docs/API.md
| Endpoint | Auth | Description |
|---|---|---|
POST /auth/register |
No | Create account, get JWT |
POST /auth/login |
No | Login, get JWT |
GET /usage |
JWT | Plan, bandwidth, stats |
GET /billing |
No | Pricing plans |
GET /nodes |
JWT | Browse proxy nodes |
GET /nodes/stats |
JWT | Network statistics |
GET /nodes/countries |
JWT | Available countries |
GET /proxy/config |
JWT | Proxy configuration |
GET /earn/stats |
JWT | Earning overview |
GET /earn/balance |
JWT | Credit balance |
GET/POST /earn/devices |
JWT | Manage earning devices |
POST /earn/cashout |
JWT | Withdraw earnings (min $10) |
GET /dashboard/summary |
JWT | Full dashboard data |
Proxy Endpoint
proxy.iploop.io:8880
Auth format (v2): [email protected]:8880
New format: :iploop_{short}_{secret}[email protected]:8880
short= first 8 chars of your customer IDsecret= 40-char random hex- Both embedded in one key — just copy and paste!
Gateway Health
curl https://gateway.iploop.io:9443/health
# → {"connected_nodes": 23000+, "status": "healthy"}
Earn Free Credits 💰
Share bandwidth → earn proxy credits. No investment needed.
docker run -d --name iploop-node --restart=always ultronloop2026/iploop-node:latest
| Tier | Uptime | Rate | Daily |
|---|---|---|---|
| 🥉 Bronze | 0–6h | 50 MB/hr | 300 MB |
| 🥈 Silver | 6–24h | 75 MB/hr | 1.35 GB |
| 🥇 Gold | 24h+ | 100 MB/hr | 2.4 GB/day |
→ ~70 GB/month free with one node running 24/7.
Multi-device: +20% per additional node.
See REWARDS.md for full details.
Pricing
| Plan | Price | Included |
|---|---|---|
| Free | $0 | 0.5 GB |
| Starter | $4.50/GB | 5 GB |
| Growth | $3.50/GB | 50 GB |
| Business | $2.50/GB | 200 GB |
| Enterprise | Custom | Dedicated support |
Use code OPENCLAW for 20% off.
Network Stats
| Metric | Value |
|---|---|
| Residential IP pool | 2,000,000+ |
| Connected nodes | 23,000+ |
| Daily unique IPs | 98,000+ |
| Countries | 195+ |
| Protocols | HTTP, HTTPS, SOCKS5 |
| Device types | Android, Windows, Mac, Smart TV |
| QA success rate | 100% (66/66 sites) |
Links
- 🌐 proxyclaw.ai — Landing page
- 📖 Docs — API documentation
- 🏠 platform.iploop.io — Platform Dashboard & sign up sign up
- 🐍 Python SDK —
pip install iploop-sdk - 📦 Node.js SDK —
npm install iploop - 🐳 Node Agent — Earn credits
- 🐳 Docker Hub
License
MIT
Yorumlar (0)
Yorum birakmak icin giris yap.
Yorum birakSonuc bulunamadi