FAQ - najczęściej zadawane pytania

Odpowiedzi na często zadawane pytania

No, in this case the refund will be made to the account from which the payment was made
Mobile operators have a limit on the number of IP addresses that can be issued to mobile Internet subscribers. These addresses are constantly changing from connection to connection, so the mobile Internet user has a more than high degree of trust on all major resources (Facebook, Instagram, Twitter, etc.) If a major resource blocks one of the IP addresses of the mobile operator, then hundreds and thousands of users would be left without access to this resource.
We advise you to carefully read which proxies you are offered. On our service we offer real mobile proxies. This means that behind your connection, there is a real SIM card from a mobile operator that works through cell towers. We do not emulate mobile proxies.
Yes you can. We offer the option of changing the IP address “By link” or by timer, from 2 minutes to 1440 (1 day)
Yes, there are no restrictions on working with specialized programs. The most important thing is that the program you will use works with proxy protocols: HTTP(s) and SOCKS.
The limit on connecting to a mobile proxy is 250 connections at a time.
For our mobile proxies we use 3G and 4G mobile networks. If you use mobile proxies while, for example, being in the USA. And the mobile proxy will be from a Russian operator. Then the speed in this case will be approximately up to 4Mb\s (provided that the mobile proxy works in 4G networks). We do not limit the speed of our mobile proxies. In 4G networks, the download speed is about 30Mb\s, and we transfer this speed to the channel.
The IP addresses of mobile operators are used by millions of people via mobile phones, tablets and modems, but they have few addresses, because... The IPv4 protocol has long exhausted its resources. In this regard, hundreds of thousands of people can access one such mobile IP at the same time, so resources such as Vkontakte, Odnoklassniki, Facebook, Google, Yandex, Instagram, Avito, YouTube, Auto.ru, Badoo, Mail.ru, Rambler.ru, Viber , WhatsApp, Telegram - treat such addresses with a high degree of trust because they do not want to block tens of thousands of innocent users.
250
Mobile proxies have a very wide range of applications. As a rule, a mobile proxy is used to work on social networks and other media resources with increased activity of ban systems. It is thanks to a trusted mobile IP address that you get a great advantage in using services compared to classic proxies or VPNs. Our proxies are used for a variety of resources, including: Vkontakte, Odnoklassniki, Facebook, Google, Yandex, Instagram, Avito, YouTube, Auto.ru, Badoo, Mail.ru, Rambler.ru, Viber, WhatsApp, Telegram, Periscope and many more others.
YES! Our clients trust us and work on Instagram in all areas of their business. Provided there is no blocking at the level of mobile operators
Then you should here
First, try rebooting the equipment in the "My proxies" section - Operations - Reboot equipment. If this does not help, let's change it in the "My proxies" section - Operations - Change equipment. If problems continue, write to us
Yes, click the “Show expired” checkbox in the “My proxies” section, and after reloading the page you will see a list of all the proxies you have ever had, and you can renew them if the equipment is available.
No, this is prohibited by our rules. For violation of which the account will be blocked
First, try rebooting the equipment in the "My proxies" section - Operations - Reboot equipment. If this does not help, let's change it in the "My proxies" section - Operations - Change equipment. If problems continue, write to us
We cannot guarantee how services determine GEO addresses and where they get their bases from, and we also do not influence which addresses the cellular operator issues, but the fact that the equipment is installed in the specified location is 100 percent

Every 2 minutes

There are no restrictions, but it is worth remembering that a change takes a certain number of seconds.
The average time for changing an IP address on mobile proxies is 5 seconds.
We do not restrict access to resources on the Internet and act within the framework of the laws of the country where the equipment is present. Regional restrictions from mobile operators and partners are also possible.
Yes, write to us the proxy ID, and we will issue a refund, either to the balance, or with a withdrawal of funds to the card/wallet from which the purchase was made. As a rule, a full refund arrives within 1 day, banks write up to 5 working days.
Yes you can. But it is important to take into account that when changing the proxy geography, the rental time will be recalculated in accordance with tariffs, it can either decrease or increase

No. The refund will be made to the Binance wallet from which the payment was made.

You need to go to your profile settings https://mobileproxy.space/user.html?options and confirm in the account deletion form your desire and indicate your account password, after which you will be de-authorized from the site and your account will be deleted forever
Our proxies support the following protocols: HTTP port — handles regular HTTP requests and HTTPS via CONNECT method (tunneling). This means you can access both HTTP and HTTPS websites through a single HTTP port. Browsers, Playwright, Selenium and other tools automatically use the CONNECT method for HTTPS. SOCKS5 port — universal protocol, supports any TCP traffic including HTTP and HTTPS. Both ports are provided simultaneously with your proxy. Which one to use depends on your software. For most tasks the HTTP port works fine.

Problem: when using a proxy in Playwright, Selenium or other automation tools, HTTPS websites do not open and you get ERR_TUNNEL_CONNECTION_FAILED error.

Cause: usually the proxy address is specified incorrectly. To access HTTPS via HTTP CONNECT tunnel, you must use the HTTP port of the proxy.

Solution:

1. Use the HTTP port from the "My Proxies" section (not the SOCKS5 port).

2. Connection format: http://login:password@address:HTTP_port

3. The scheme is always http://, even for accessing HTTPS websites — the browser will automatically send a CONNECT command through this port.

Playwright example (Node.js):

const browser = await chromium.launch({
  proxy: {
    server: 'http://address:HTTP_port',
    username: 'login',
    password: 'password'
  }
});

Selenium example (Python):

proxy = "http://login:password@address:HTTP_port"
options.add_argument(f"--proxy-server={proxy}")

Important: do not use https:// in the proxy address — this is a common mistake. The proxy server accepts connections via HTTP, while HTTPS traffic is passed through a tunnel (CONNECT method) in encrypted form.