Software and API

WWProxy for Windows - 1 key per PC

Proxifier Installation Package

Link Google Drive - Link Onedrive - Guide Link

Google Chrome Extension

Link Onedrive - Guide Link

Fire Fox ADD ONS

Link - Guide Link

WW-ProxyHost: Creating a proxy hotspot for Windows

Link OneDrive - Guide Link

WW-Proxy Android - Change IP for Android phones - No device rooting required

Link OneDrive - Guide Link - Link CHPlay

API usage instructions

1. Retrieve the list of provinces with proxy servers.

Description: Retrieve the list of provinces with proxy servers and then use it to get a new IP.
Guide Link: https://wwproxy.com/api/client/province
GET https://wwproxy.com/api/client/province?search_text=
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": [
    {
      "id": 1,
      "name": "Thành phố Hà Nội",
      "level": "Thành phố Trung ương"
    }
  ],
  "size": 0
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "Nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

2. Get a new IP

Description: Get a new IP associated with the key according to the requested province. Where provinceId is the ID field returned from the API to retrieve the list of provinces with proxy servers. If there is no request for a province, please set provinceId to -1.
Guide Link: https://wwproxy.com/api/client/proxy/available
GET https://wwproxy.com/api/client/proxy/available?key=a46b576f-8e0e-4e3f-a641-9ace927b7043&provinceId=-1
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": {
    "expiredTime": "2023/12/01 00:00:00",
    "ipAddress": "string",
    "port": 0,
    "provinceId": 0,
    "proxy": "string",
    "status": "WAITING",
    "vip": 0
  },
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

3. Get current IP information

Description: Retrieve information about the IP currently associated with the key.
Guide Link: https://wwproxy.com/api/client/proxy/current
GET https://wwproxy.com/api/client/proxy/current?key=a46b576f-8e0e-4e3f-a641-9ace927b7043
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": {
    "expiredTime": "2023/12/01 00:00:00",
    "ipAddress": "string",
    "port": 0,
    "provinceId": 0,
    "proxy": "string",
    "status": "WAITING",
    "vip": 0
  },
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

4. Delete old IP

Description: Delete the old IP currently associated with the key.
Guide Link: https://wwproxy.com/api/client/proxy/remove
POST https://wwproxy.com/api/client/proxy/remove?key=a46b576f-8e0e-4e3f-a641-9ace927b7043
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": true,
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

5. Get list of keys

Description: Retrieve a list of keys. Where user_api_key is the string provided to each user, you can look it up right here.
Guide Link: https://wwproxy.com/api/client/key/list
GET https://wwproxy.com/api/client/key/list?user_api_key=78b51e83-feeb-43ce-bdb9-b1df70ec0eb7
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": [
    {
      "uuid": "a46b576f-8e0e-4e3f-a641-9ace927b7043",
      "vip": 0,
      "expiredTime": "2024/01/01 00:00:00",
      "alias": null,
      "expiredFlag": false
    }
  ],
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

6. Get key information

Description: Retrieve information about the key. Where user_api_key is the string provided to each user, you can look it up right here.
Guide Link: https://wwproxy.com/api/client/key/detail
GET https://wwproxy.com/api/client/key/detail?user_api_key=78b51e83-feeb-43ce-bdb9-b1df70ec0eb7&key=a46b576f-8e0e-4e3f-a641-9ace927b7043
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": {
    "uuid": "a46b576f-8e0e-4e3f-a641-9ace927b7043",
    "vip": 0,
    "expiredTime": "2024/01/01 00:00:00",
    "alias": null,
    "expiredFlag": false
  },
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

7. Purchase a new key

Description: Purchase a new key. Where user_api_key is the string provided to each user, you can look it up right here. VIP is the type of key, pass 0 for normal key, 1 for VIP key. qty is the quantity of keys to purchase. days is the number of days to use the key.
Guide Link: https://wwproxy.com/api/client/key/buy
POST https://wwproxy.com/api/client/key/buy?user_api_key=78b51e83-feeb-43ce-bdb9-b1df70ec0eb7&vip=1&qty=1&days=1
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": true,
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

8. Renew key

Description: Renew the usage time of the key. Where user_api_key is the string provided to each user, you can look it up right here.days is the number of days to use the key.
Guide Link: https://wwproxy.com/api/client/key/renewal
POST https://wwproxy.com/api/client/key/renewal?user_api_key=78b51e83-feeb-43ce-bdb9-b1df70ec0eb7&key=a46b576f-8e0e-4e3f-a641-9ace927b7043&days=1
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": true,
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

9. Delete key

Description: Delete the key. Where user_api_key is the string provided to each user, you can look it up right here.
Guide Link: https://wwproxy.com/api/client/key/remove
POST https://wwproxy.com/api/client/key/remove?user_api_key=78b51e83-feeb-43ce-bdb9-b1df70ec0eb7&key=a46b576f-8e0e-4e3f-a641-9ace927b7043
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": true,
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}

10. Get user information

Description: Retrieve user information. Where user_api_key is the string provided to each user, you can look it up right here.
Guide Link: https://wwproxy.com/api/client/user/current
POST https://wwproxy.com/api/client/user/current?key=a46b576f-8e0e-4e3f-a641-9ace927b7043
Success:
{
  "status": "OK",
  "errorCode": 0,
  "message": "success",
  "data": {
    "uuid": "a46b576f-8e0e-4e3f-a641-9ace927b7043",
    "username": "tài khoản",
    "email": "email đăng ký",
    "name": "tên hiển thị",
    "picture": "ảnh đại diện người dùng",
    "depositCode": "mã nạp tiền",
    "balance": 0
  },
  "currentTime": "2023/12/01 00:00:00"
}
Error:
{
  "status": "BAD_REQUEST",
  "errorCode": 1,
  "message": "nguyên nhân lỗi",
  "data": null,
  "currentTime": "2023/12/01 00:00:00"
}