
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@mobileproxy/sdk
Advanced tools
Official Node.js SDK for MobileProxy.Space API — private mobile proxies on real GSM devices
Official Node.js SDK for the MobileProxy.Space API — private mobile proxies on real GSM devices across 52 countries.
index.d.ts)fetch (Node.js 18+)require() and importApiError, AuthenticationError, RateLimitErrorchangeIp() with no rate limitnpm install @mobileproxy/sdk
const MobileProxyClient = require('@mobileproxy/sdk');
const client = new MobileProxyClient('YOUR_API_TOKEN');
// Check balance
const balance = await client.getBalance();
console.log(balance);
// List active proxies
const proxies = await client.getMyProxy();
// Get current IP
const ip = await client.getProxyIp(12345);
// Rotate IP (no rate limit)
await client.changeIp('your_proxy_key');
import MobileProxyClient from '@mobileproxy/sdk';
const client = new MobileProxyClient('YOUR_API_TOKEN');
const balance = await client.getBalance();
| Method | Description |
|---|---|
getProxyIp(proxyId, options?) | Get current IP address of a proxy |
getMyProxy(proxyId?) | List active proxies (all or specific) |
getIpStats() | IP address statistics by GEO |
| Method | Description |
|---|---|
changeProxyCredentials(proxyId, login, password) | Change proxy login/password |
rebootProxy(proxyId) | Restart the modem |
editProxy(proxyId, options?) | Update proxy settings |
changeIp(proxyKey, options?) | Rotate IP (no rate limit) |
| Method | Description |
|---|---|
changeEquipment(proxyId, options?) | Switch modem/SIM/operator/city |
getAvailableEquipment(proxyId, options?) | List available equipment by GEO |
getGeoList(proxyId, geoId) | Available GEOs for a proxy |
getOperators(geoId) | Operators for a GEO |
getCountries(onlyAvailable?) | List of countries |
getCities() | List of cities |
| Method | Description |
|---|---|
getBlackList(proxyId) | Get equipment/operator blacklist |
addOperatorToBlackList(proxyId, operatorId) | Block an operator |
removeOperatorFromBlackList(proxyId, operatorId) | Unblock an operator |
removeFromBlackList(proxyId, blackListId, eid) | Remove equipment from blacklist |
| Method | Description |
|---|---|
buyProxy(options) | Purchase a proxy |
refundProxy(proxyId) | Request a refund |
getBalance() | Account balance |
getPrices(countryId) | Prices for a country |
getTestProxy(geoId, operator) | Get a free 2-hour trial proxy |
| Method | Description |
|---|---|
checkEquipmentAvailability(eid) | Check if equipment is available |
viewUrlFromDifferentIps(url, countryId) | Anti-cloaking: view URL from another country |
getTaskResult(taskId) | Get async task result |
const { ApiError, AuthenticationError, RateLimitError } = require('@mobileproxy/sdk');
try {
await client.getBalance();
} catch (err) {
if (err instanceof AuthenticationError) {
// Invalid API token
} else if (err instanceof RateLimitError) {
// Too many requests — back off and retry
} else if (err instanceof ApiError) {
console.error(err.message, err.httpCode, err.responseBody);
}
}
const client = new MobileProxyClient('YOUR_API_TOKEN', {
timeout: 120000, // request timeout in ms
baseUrl: 'https://mobileproxy.space/api.html', // default
});
API requests are limited to 3 × (number of active proxies) per second. For example, 10 proxies = 30 req/s. The changeIp() method uses a separate endpoint with no rate limit.
fetch)MIT — see LICENSE.
FAQs
Official Node.js SDK for MobileProxy.Space API — private mobile proxies on real GSM devices
The npm package @mobileproxy/sdk receives a total of 13 weekly downloads. As such, @mobileproxy/sdk popularity was classified as not popular.
We found that @mobileproxy/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.