Confused about where your gigabytes went? Read this to understand our billing logic and how to debug high usage.Documentation Index
Fetch the complete documentation index at: https://anyip.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
How We Count Data
- Download + Upload: We count both incoming and outgoing traffic.
- Headers: HTTP headers count toward data usage (usually negligible, but non-zero).
- Failed Requests: If the request reaches our server and we attempt to fetch it, data is counted, even if the destination site returns a 404 or 500.
🕵️♂️ “Why did my data disappear?”
We often hear: “I just bought 20GB and it’s gone in 2 hours, but I didn’t scrape anything!” Here are the most common culprits for “Ghost Usage”:1. Browser Background Processes
If you are running a full browser (Chrome/Firefox) via Selenium/Puppeteer:- Auto-Updates: Chrome might silently download a 200MB update.
- Syncing: Browser sync, extensions updating, and telemetry can consume massive data.
- Images & Video: Loading
instagram.comcan consume 5-10MB per page load if you don’t block images/video. - Local AI Models: Chrome/Chromium app might now silently download a 4-5GB local AI model without user notification or consent.
2. The “While True” Loop
A common coding error is a retry loop without a delay.- Code:
while error: retry() - Result: Your script fires 10,000 requests per second for an hour, burning 10GB of data on error pages alone.
3. Compromised Credentials
If you shared youruser_ID:password with a team member or pasted it in a public GitHub repo, someone else might be using your traffic.
- Fix: Change your proxy password immediately in the Dashboard.
The Rollover Rule 🔄
Does unused data roll over? Yes, but there is a rule. You must renew your subscription within 7 days of its expiration date to keep your rolled-over data.Rollover also works when changing plans
Unused data can roll over when you renew on the same plan, upgrade, or downgrade. The important condition is not the plan size, but the renewal timing.| Scenario | Result |
|---|---|
| You renew the same plan before expiration. | ✅ Unused data rolls over. |
| You upgrade before expiration. | ✅ Unused data rolls over. |
| You downgrade before expiration. | ✅ Unused data rolls over. |
| You renew within 7 days after expiration. | ✅ Unused data rolls over. |
| You renew after more than 7 days. | ❌ Unused data is lost. |
”Top-up” vs. “Renew”
It is crucial to understand the difference between these two buttons in your dashboard:1. Top-up (Add Data) 🔋
- What it does: Adds GBs to your current plan.
- Expiration: Does NOT extend your expiration date.
- Use case: You ran out of data but still have 15 days left on your subscription.
2. Renew (Extend Time) 🗓
- What it does: Resets your cycle and extends your access time.
- Expiration: Adds 30 days (or your plan duration) to the expiration date.
- Use case: Your plan is about to expire (or has expired).