Proxy infrastructure
for AI agents
CLI and API for agents to provision 4G/5G mobile proxies in 190+ countries. Pay per request with x402. No accounts, no invoices.
// capabilities
Built for machines.
Readable by humans.
CLI-First
One command to authenticate. One command to get a proxy. Pipe-friendly output. Zero GUI required.
coronium proxy get --country DE --type 4g
Agent API
REST endpoints with OpenAPI spec. Python and TypeScript SDKs. Designed for LLM tool-use and function calling.
POST /v1/proxies → 201 Created
x402 Payments
HTTP 402 native. Pay per request with USDC micropayments. No billing accounts, no invoices, no humans needed.
X-Payment: x402/usdc/$0.003
Instant Provision
4G/5G mobile proxies in 190+ countries. Provisioned in under 2 seconds. Auto-rotate, sticky sessions, geo-targeting.
avg provision: 1.2s · uptime: 99.97%
// integration
Three lines to a proxy.
Works with any HTTP client, any language, any agent framework. Native SDKs for Python and TypeScript.
Coming Soon
SDK and API documentation in progress
from coronium import Coronium
client = Coronium() # reads CORONIUM_API_KEY
proxy = client.proxies.create(
country="US",
type="5g",
session="sticky",
ttl=3600,
)
print(proxy.url)
# → socks5://5g-us-01.coronium.io:8443
# x402 payment is automatic —
# $0.003/req deducted from USDC balanceimport { Coronium } from "@coronium/sdk"
const client = new Coronium()
const proxy = await client.proxies.create({
country: "US",
type: "5g",
session: "sticky",
ttl: 3600,
})
console.log(proxy.url)
// → socks5://5g-us-01.coronium.io:8443
// x402: auto-pay $0.003/req from balancecurl -X POST https://api.coronium.io/v1/proxies \
-H "Authorization: Bearer sk_live_****" \
-H "X-Payment: x402/usdc" \
-d '{"country": "US", "type": "5g"}'
# → {"id": "px_01H8...", "url": "socks5://5g-us-01.coronium.io:8443", "cost": "$0.003/req"}// pricing
Pay per request.
Nothing else.
No subscriptions. No tiers. No commitments. Fund your balance with USDC and pay exactly what you use via x402.
Coming Soon
Final pricing to be announced
Payments are processed on-chain via the x402 protocol. Fund with USDC on Base. No minimum balance. Unused funds are fully refundable.
// get notified
Your agent needs a proxy.
We're building it.
Coronium CLI is under active development. Join the waitlist to get early access when we launch.