REST API mobileproxy.space Moves to a Dedicated Domain — mpsapi.com

We have moved the REST API of mobileproxy.space to a dedicated domain — mpsapi.com. Now, programmatic management of mobile and server proxies happens through a single address: https://mpsapi.com/api.html. The old address mobileproxy.space/api.html will continue to work until August 31, 2026, so you can migrate your integrations calmly and without any rush.

What Has Changed

Only the API endpoint address has changed. The service itself, your accounts, access tokens, commands, and response format remain the same — simply replace the domain in the base URL of your requests:

  • Before: https://mobileproxy.space/api.html?command=...
  • After: https://mpsapi.com/api.html?command=...

New API Address

The base endpoint is now:

https://mpsapi.com/api.html

Authorization hasn't changed — you still use the Bearer token from your account dashboard. Here's an example request to get your list of proxies:

curl --request GET \ --url 'https://mpsapi.com/api.html?command=get_my_proxy' \ --header 'Authorization: Bearer YOUR_TOKEN'

How to Migrate Your Integrations

Migration simply means changing the domain in one place — where you build the API URL. Below are examples in popular languages.

Python

import requestsBASE = "https://mpsapi.com/api.html"headers = {"Authorization": "Bearer YOUR_TOKEN"}r = requests.get(BASE, params={"command": "get_my_proxy"}, headers=headers)print(r.json())

Node.js

const BASE = "https://mpsapi.com/api.html";const res = await fetch(BASE + "?command=get_my_proxy", { headers: { Authorization: "Bearer YOUR_TOKEN" }});console.log(await res.json());

If your API address is stored in a constant or environment variable, just update it — and that's it, migration complete.

IP Whitelist and Token Remain

If you restricted API access to a list of allowed IPs, that whitelist remains active: it's stored in your account and works the same on both domains. You can manage your access token and IP whitelist directly on the mpsapi.com portal after logging in.

How Long the Old Address Works

The old address mobileproxy.space/api.html will remain available until August 31, 2026. Until then, both addresses work in parallel, so you can migrate your integrations gradually without any downtime. After August 31, 2026, only the new domain mpsapi.com will accept API requests.

Why a Dedicated Domain

A dedicated domain gives your integrations a single, predictable address for programmatic access to the proxy network. The endpoint lives independently from the rest of the site's infrastructure — making it more convenient for automation and long-term support of your scripts and applications.

Documentation

Up-to-date documentation and a full command reference are available at mpsapi.com/docs.html and in the «API» tab of your personal account. All examples already use the new domain.

Still have questions about the migration? Reach out to support — we'll help you move your integrations to the new address.