Quick Start

1. Contributor (PC/App)

  1. Install the client and sign in.
  2. Enable Wi-Fi-only sharing and set a bandwidth cap.
  3. 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)

  1. Complete organization onboarding and KYC.
  2. Create an API key and configure allowlisted IPs.
  3. 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