← Back to blog
QUICKSTART nodetonet.com

How to use Nodetonet — from signup to your first live proxy in 60 seconds

N Nodetonet Team
May 13, 2026 9 min read

Nodetonet is a self-hosted mobile proxy and tunneling platform. There is no monthly subscription — you top up prepaid service credit and consume it only as your tunnels run. Idle proxies cost nothing. This guide walks you from an empty account to a tested, working HTTPS proxy in under a minute.

TL;DR: Register → top up $1 → download the Android agent → paste a token → create a proxy → run one curl. Done.

By the end you'll have:

1 · Create an account

Head to /auth/register. Enter a username, email address and password — or use one-click sign-in with Google, Discord or GitHub if you prefer. Confirm the verification link we send you, then sign in. You'll land on the dashboard.

nodetonet.com/dashboard Welcome back, fredd 2 proxies active · $48.92 credit SERVICE CREDIT $48.92 ~1488 days at current burn ACTIVE PROXIES 2 / 4 2 idle · $0.066/day DEVICES ONLINE 3 2 Android · 1 PC Recent proxies socks5://u0:p0@xxx0.nodetonet.com:48888 Android socks5://u1:p1@xxx1.nodetonet.com:49102 PC socks5://u2:p2@xxx2.nodetonet.com:50311 Android

The dashboard shows three live numbers you will come back to constantly: service credit (what fuels your tunnels), active proxies (what is running right now), and devices online (which paired hardware is reachable at this moment). All three update in real time — no page refresh needed.

2 · Copy your personal API key

The dashboard has a card titled Personal API Key. Copy it and keep it somewhere safe. You will not need it for the panel UI, but every REST call takes Authorization: Bearer <key>. Anyone who has the key can list, create and delete proxies under your account — treat it like a password.

If your key ever leaks, click Rotate on the same card. The old key becomes invalid instantly; any scripts still using it will start receiving 401 errors.

For more detail on key management and scope see understanding your API key.

3 · Add prepaid credit

Go to /balance. Pick any package — the smallest is $1, which is enough to keep a single tunnel alive for weeks and test the whole platform thoroughly. Click Pay with Card to reach the Stripe-hosted checkout. Credit appears in your balance within a few seconds after payment, via Stripe webhook — no manual refresh needed.

Nodetonet billing is strictly prepaid: you pay for what you use, and an idle proxy costs nothing. If you want to avoid running dry, go back to /balance later, save a card and configure auto top-up: set a minimum balance threshold and a recharge amount. When the balance dips below the threshold, the panel charges your saved card automatically and credits the balance, with a 10-minute cooldown to prevent runaway charges if something goes wrong. See saving cards and payment methods and pay-as-you-go pricing explained for a deeper look.

4 · Pair an Android phone as your proxy device

Open /tokens and click + New token. Give it a memorable label — something like "Samsung S24 · SIM1". The panel returns a short token string and displays a QR code.

nodetonet.com/tokens Tokens + New token LABEL TOKEN DEVICE STATUS Samsung Galaxy S24 3KZL · ··· · z8w9 Android 14 ONLINE iPad Pro M2 7QYN · ··· · m2x4 Pending pair OFFLINE Windows desktop NPJX · ··· · k1f7 Windows 11 ONLINE

On the Android phone, install the Nodetonet agent from the link on the /download page. Open the app, tap Paste token (or scan the QR), and within a few seconds the phone reports Status: Connected. Back in the panel, the token row flips to ONLINE and shows the device model, Android version and the live public IP the carrier has assigned it.

A few things to know at this stage:

Don't have an Android device available right now? You can still test the panel by creating an upstream-only proxy that forwards through a residential provider URL — see upstream-only proxies.

5 · Create your first proxy

From /proxies click New Proxy:

nodetonet.com/proxies Create new proxy TITLE Tunnel #4d7a PROTOCOL HTTP · SOCKS5 · HTTPS PORT auto (recommended) TOKEN samsung-galaxy-s24 · 3KZL...8w9 UPSTREAM (OPTIONAL) host:port:user:pass Create Cancel
FieldWhat to pickNotes
TitleAny label you wantDefaults to Tunnel #<random> if left blank
ProtocolHTTP for first testWidest client compatibility; switch to SOCKS5 later for raw TCP apps
PortLeave on autoThe panel picks a verified-available port on the edge server
TokenThe phone you just pairedPick "Upstream Only" if you have no device yet
Upstream Proxy (optional)Your provider URLFormat: host:port:user:pass — see upstream residential forwarding

Click Create. The panel connects to the edge server, reserves a port, and sets up the tunnel to your phone — this takes at most a few seconds. When it's done you'll see the full connection string.

6 · Test the proxy

The connection string looks like this:

http://u8x2:p7q1@sub42.nodetonet.com:48888

Run a quick verification from any terminal:

curl -x http://u8x2:p7q1@sub42.nodetonet.com:48888 https://api.ipify.org

You should see the public IP assigned to the paired phone by its carrier. That is the exit IP every request through this tunnel will appear to come from, until you either trigger a rotation or the sticky-session TTL expires.

You can also paste the connection string directly into our proxy checker tool to confirm latency, protocol support and geo-location in one click.

7 · Sticky sessions and IP rotation

By default a proxy is in sticky mode — the same phone (and therefore the same IP) handles all requests until you tell it otherwise. This is what you want for anything stateful: a login flow, a multi-step checkout, a scrape that must stay on one identity.

To get a fresh IP on each request (fully rotating) you either create a token-group proxy that round-robins across multiple devices, or configure a sticky TTL short enough that it expires between requests. On Nodetonet you can also append a session identifier to your proxy username to pin to a specific session within a rotating pool:

http://u8x2-session-abc123:p7q1@sub42.nodetonet.com:48888

Drop the -session-abc123 suffix and every request gets a different device. For the full logic see sticky sessions explained and when to use rotating mobile proxies.

8 · Geo-targeting: country, city and carrier

A mobile IP isn't just "mobile" — it carries a real location and a real carrier. Nodetonet lets you steer that with username modifiers appended to the proxy username, so you never have to change the host or port. For example, to target a Turkish Vodafone exit you would use:

http://u8x2-country-tr-carrier-vodafone:p7q1@sub42.nodetonet.com:48888

You can target by country code, city or carrier — or combine them. See geo-targeting for the full modifier syntax and available Turkey locations including Turkcell, Vodafone, Türk Telekom and İstanbul.

9 · Per-client access controls

If you are building a service for end users or resellers, Nodetonet lets you create proxy clients — each with its own username/password, IP allowlist, domain allow/deny list, data quota, expiry date, and concurrent connection (thread) limit. This means you can hand a customer exactly as much access as their plan entitles them to, from a single shared proxy endpoint, without them ever seeing your master credentials.

For a white-label or reseller setup, Nodetonet integrates with WISECP — see reseller features.

10 · Manage everything via the REST API

Every action in the panel has an equivalent API call. Here are the three most common ones to get you started:

# List all your proxies
curl -H "Authorization: Bearer $KEY" https://nodetonet.com/api/v1/proxies

# Get usage stats for a single proxy
curl -H "Authorization: Bearer $KEY"   https://nodetonet.com/api/v1/proxies/<id>/usage

# Create an HTTP proxy programmatically
curl -X POST -H "Authorization: Bearer $KEY"   -H "Content-Type: application/json"   -d '{"protocol":"http","port":"auto","serverId":"...","tokenId":"..."}'   https://nodetonet.com/api/v1/proxies

The full reference lives at /documents, with an OpenAPI spec at /openapi.json. For a Python walkthrough see programmatic tunnel creation in Python and for your first API call from any language see REST API: your first call.

Beyond the basics: VPN and HTTP tunnels

Nodetonet is more than proxies. The same panel lets you run a VPN (WireGuard-based, ideal for routing a whole device through a mobile exit) and HTTP tunnels that expose a local port to a public HTTPS URL — powered by either the Windows .exe agent or an Android token, so you need no separate server. See introducing the Nodetonet VPN and the features overview for the full picture.

What's next

Or skip straight to the dashboard and start shipping.

Frequently asked questions

Do I need my own Android phone to use Nodetonet?
No — it helps, but it is not required to get started. You can create an upstream-only proxy that forwards through a residential provider URL without pairing any device. Pairing an Android phone gives you a genuine 4G/5G mobile IP and is the most cost-effective long-term setup.
Is there a monthly subscription or contract?
No. Nodetonet is purely prepaid — you top up service credit and it is consumed only while your tunnels are running. Idle proxies cost nothing. There is no minimum spend, no contract and no cancellation process.
What proxy protocols does Nodetonet support?
HTTP/HTTPS and SOCKS5, both with username/password authentication. HTTP is the most compatible choice for browsers and scrapers; SOCKS5 forwards raw TCP and works for any application, including non-web tools. You pick the protocol when creating the proxy and can run both types simultaneously from the same device.
How do I switch between rotating and sticky mode?
Append -session-XXXX to your proxy username for a sticky session tied to that identifier; omit it on a token-group proxy to get a fresh device (and IP) for each request. You can also set a sticky TTL in the proxy settings so the session expires automatically after a defined period.
Can I target a specific country, city or mobile carrier?
Yes. Add a country, city or carrier modifier to the proxy username — for example -country-tr or -carrier-turkcell — without changing the host or port. The exact selection depends on which devices are online in your fleet at the moment. See the geo-targeting page for full syntax.
How do I give a customer their own proxy credentials without sharing mine?
Create a proxy client under the proxy. Each client gets its own username and password and can have a quota, thread limit, domain filter and expiry date. The customer connects to the same endpoint but is authenticated and metered separately. See proxy clients for the full walkthrough.
What happens if my credit runs out?
Active tunnels stop accepting new connections when the balance reaches zero; existing connections drain naturally. Your proxy configuration and device pairings are preserved — top up and they resume. Enable auto top-up on the balance page to avoid interruption.
Where can I get help if something does not work?
Open a ticket at support@nodetonet.com, join the community on Discord at discord.gg/nodetonet, or follow updates on X at x.com/nodetonet. The documentation at /documents covers most common issues, and the getting-help guide walks through the diagnostic steps before you write in.
N

Nodetonet Team

Building Nodetonet — a prepaid proxy + tunneling platform that replaces ngrok, Cloudflared and a residential proxy provider with a single panel.

Related posts