Build scraping bots, APIs, and automation services on mobile proxy infrastructure. Sell via pay-per-request USDC micropayments.
The Apify Store alternative with crypto payments, developer bounties, and AI-agent native x402 protocol. No registration required.
Feed updated by Maya as events happen. skill.md for machine-readable catalog.
The Proxies.sx Marketplace is where builders create bots, scrapers, and APIs using Proxies.sx infrastructure, then list them for others to use and pay via x402 USDC micropayments. Anyone can submit a service.
These scraping-as-a-service endpoints are live in production — call them with USDC via x402 right now.
api.proxies.sx/v1/x402/proxybrowser.proxies.sx/v1/sessionsapi.proxies.sx/v1/x402/maps# Mobile Proxy — get a US proxy with 0.1GB traffic
curl "https://api.proxies.sx/v1/x402/proxy?country=US&traffic=0.1"
# Google Maps Lead Generator — search for businesses
curl "https://api.proxies.sx/v1/x402/maps?q=plumbers+in+Austin+TX&num=10"
# Antidetect Browser — create a session with auto-proxy
curl -X POST "https://browser.proxies.sx/v1/sessions" \
-H "Content-Type: application/json" \
-d '{"country":"US"}'All services accept USDC on Base (~2s settlement) and Solana (~400ms). AI agents handle the 402 flow automatically.
0xF8cD900794245fc36CBE65be9afc23CDF51030426eUdVwsPArTxwVqEARYGCh4S2qwW2zCs7jSEDRpxydnvData extraction, social media, monitoring, research, verification, content, and custom bot services — all powered by real mobile proxies
| Service | Price Range |
|---|---|
| SERP Scraping | $0.003 - $0.01 / query |
| Price Monitoring | $0.02 - $0.05 / check |
| Review Scraping | $0.01 - $0.03 / page |
| Amazon BSR Intel | $0.02 / ASIN |
Pay USDC per API call via HTTP 402
Monthly USDC payment for volume access
One-time payment for a batch of results
Build one of these services on Proxies.sx infrastructure and earn $50-$200 paid in $SX token per bounty upon review and approval. $1,150 total across 14 bounties.
Real Google search results from real mobile device. Mobile-specific SERP features: People Also Ask, AI Overviews, map packs.
Monitor prices and availability across Amazon, Walmart, Target, eBay. Structured JSON output.
Extract business data from Google Maps. Completed by aliraza556 — PR #17 merged.
Structured profile data from Instagram, TikTok, X/Twitter: followers, engagement rate, top content.
Monitor competitor ads across Google Ads, Meta Ad Library, TikTok. Ad creatives, landing pages, targeting.
Real-time flight and hotel prices from Google Flights, Booking.com. Multi-source price comparison.
Verify ad placements from real mobile perspective. Placement accuracy, redirect chain analysis, screenshots.
Aggregate reviews from Google Maps, Yelp, TripAdvisor, Trustpilot. Sentiment analysis, keyword extraction.
Aggregate listings from Zillow, Redfin, Realtor.com. Price history, days on market, school ratings.
Aggregate job listings from LinkedIn, Indeed, Glassdoor. Salary, skills, remote status, applicant count.
Extract transcripts from YouTube videos via mobile proxy. Handles region-locked and age-restricted content.
Full Google SERP scraping via real browser rendering. Extract AI Overviews, organic results, featured snippets, People Also Ask. PR #4 rejected — bounty re-opened.
End-to-end Gmail account creation with phone verification via SMS API. Account warming included. PR #5 by rakesh0x — awaiting proof.
End-to-end Instagram account creation with email + phone verification. Account warming to avoid shadowban. PR #6 by aybanda — awaiting proof.
Everything you need to build a scraping service, gate with x402 USDC payments, and list it on the developer marketplace
Real 4G/5G IPs from 15+ countries, HTTP + SOCKS5
/v1/x402/proxyCloud Camoufox with unique fingerprint + auto mobile proxy
browser.proxies.sx/v1/sessions55 tools for AI agents to manage proxy infrastructure
npx @proxies-sx/mcp-serverPayment middleware for gating your API with USDC
@proxies-sx/x402-honoWebSocket relay for routing traffic through peers
wss://relay.proxies.sx| Package | Install |
|---|---|
| @proxies-sx/x402-core | npm i @proxies-sx/x402-core |
| @proxies-sx/x402-hono | npm i @proxies-sx/x402-hono |
| @proxies-sx/x402-solana | npm i @proxies-sx/x402-solana |
| @proxies-sx/mcp-server | npx @proxies-sx/mcp-server |
| @proxies-sx/browser-mcp | npx @proxies-sx/browser-mcp |
Use Proxies.sx infrastructure as the backbone:
GET /v1/x402/proxy?country=USPOST browser.proxies.sx/v1/sessionsnpx @proxies-sx/mcp-serverimport { x402Middleware } from '@proxies-sx/x402-hono';
import { verifySolanaPayment } from '@proxies-sx/x402-solana';
const app = new Hono();
app.use('/api/*', x402Middleware({
price: 5000, // $0.005 in micro-units
recipient: 'YOUR_SOLANA_WALLET',
verify: verifySolanaPayment,
}));
app.get('/api/scrape', async (c) => {
const result = await scrapeWithMobileProxy(c.req.query('url'));
return c.json(result);
});Fill in the submission template and contact us:
Maya reviews submissions and lists approved services. See submit.md for the full template.
import { Hono } from 'hono';
import { x402Middleware } from '@proxies-sx/x402-hono';
import { verifySolanaPayment } from '@proxies-sx/x402-solana';
const app = new Hono();
// Gate all API endpoints with x402 ($0.005 per request)
app.use('/api/*', x402Middleware({
price: 5000, // $0.005 in micro-units (1 unit = $0.000001)
recipient: 'YOUR_SOLANA_WALLET',
verify: verifySolanaPayment,
networks: ['solana', 'base'],
}));
// SERP scraping endpoint
app.get('/api/serp', async (c) => {
const query = c.req.query('q');
const country = c.req.query('country') || 'US';
// 1. Get a mobile proxy via x402
const proxyRes = await fetch(
`https://api.proxies.sx/v1/x402/proxy?country=${country}&traffic=0.1`,
{ headers: { 'Payment-Signature': PREPAID_TX_HASH } }
);
const proxy = await proxyRes.json();
// 2. Scrape Google through mobile proxy
const searchUrl = `https://www.google.com/search?q=${encodeURIComponent(query)}&hl=en`;
const result = await fetch(searchUrl, {
headers: { 'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 17_0...)' },
agent: new HttpsProxyAgent(
`http://${proxy.username}:${proxy.password}@${proxy.host}:${proxy.httpPort}`
)
});
const html = await result.text();
// 3. Parse and return structured SERP data
return c.json(parseSERP(html));
});
export default app;| Resource | Your Cost | You Charge | Margin |
|---|---|---|---|
| Mobile proxy (0.01 GB / req) | $0.04 / 100 req | $0.005 / req | $0.46 / 100 req |
| Browser session (30 sec) | ~$0.0025 / session | $0.01 / session | $0.0075 / session |
| Hosting (VPS) | ~$5 / month | — | Fixed cost |
Directory grows as builders submit and get approved. First movers get maximum visibility.
How the x402 developer marketplace compares to traditional API marketplaces and scraping-as-a-service platforms
| Feature | PROXIES.SX Marketplace | Apify Store | RapidAPI |
|---|---|---|---|
| Commission / Fee | 0% protocol fee | 20% commission | 20% transaction fee |
| Payment Method | USDC (Solana, Base) | Credit card, PayPal | Credit card |
| Settlement Speed | 400ms (Solana) | 30-60 days | 30 days |
| Registration Required | No (permissionless) | Yes (account needed) | Yes (account needed) |
| AI Agent Compatible | Native (x402 protocol) | Via API key | Via API key |
| Built-in Proxy Infra | Real 4G/5G mobile IPs | Datacenter proxies | None (BYOP) |
| Antidetect Browser | Included (Camoufox) | Separate service | None |
| Developer Bounties | 14 bounties ($1,150) | $1M challenge | None |
| Focus | Scraping + AI agents | General automation | All API categories |
While Apify Store and RapidAPI take 20% of builder revenue, the x402 protocol has zero protocol fees — builders keep the full margin between what users pay and infrastructure costs. Combined with real 4G/5G mobile proxies (not datacenter IPs), this creates scraping services with higher success rates at lower cost. AI agents can discover and pay for services autonomously via HTTP 402, making this the first API marketplace purpose-built for machine-to-machine commerce.
api.proxies.sxagents.proxies.sxbrowser.proxies.sxrelay.proxies.sxgw.proxies.sxThe marketplace is early. The first builders listed will get maximum visibility as the network scales.