Quick Start
1. Contributor (PC/App)
- Install the client and sign in.
- Enable Wi-Fi-only sharing and set a bandwidth cap.
- Start the node and confirm online status in the dashboard.
POST /api/node/start
Authorization: Bearer <user_jwt>
{
"wifiOnly": true,
"dailyCapMB": 10240,
"bandwidthLimitPercent": 35
}
2. Enterprise (API)
- Complete organization onboarding and KYC.
- Create an API key and configure allowlisted IPs.
- Send your first network request.
curl -X POST "https://api.netshare.ai/v1/network/request" \
-H "Authorization: Bearer <NETSHARE_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"target_url": "https://example.com",
"zone": "residential-global",
"geo": {"country": "US"},
"session": {"mode": "rotate"}
}'
3. Validate Output
- Check returned
exit_ip, status code, and latency. - Confirm the request appears in usage and billing records.
- Track error rate and switch to
sticky mode when needed.
Next: Contributor Integration