www.nstproxy.com Open in urlscan Pro
172.67.188.157  Public Scan

Submitted URL: http://www.nstproxy.com/
Effective URL: https://www.nstproxy.com/
Submission: On April 28 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

Join Our Telegram Group!

GO

Products

Residential Proxy

80M+ real IPs in 195+ countries & 400+ cities

IPv6 Proxy

20M+ private & dedicated datacenter IPv6 IPs
Pricing
Solutions
Documents
   
 * English
 * 简体中文
 * Русский
 * Español
 * Tiếng Việt
   


Contact Sales



Sign Up







ONE PROXY SERVICE, INFINITE SOLUTIONS AT UNBEATABLE PRICES!

Respond to any business scenario with ease & automatically assign the best IP
for your company. Prices as low as 0.4$ /GB!

100M

100M Unique IPs

99.99%

99.99% Uptime

Flexible

Flexible pricing
Start Using



Google Usage






WHAT MAKES US DIFFERENT FROM ALL OTHERS?

All IPs Undergo Business-level Targeted Screening

Relying on massive business data accumulation and IP library retention
algorithms, we can provide you with quality-screened IPs under specified
application scenarios, and these IPs will have better performance in your
business.

Team of Experts in Researching Business Scenarios

The industry's first sunken business scenario research team ensures that we
understand your business better in order to provide more specific proxy
recommendations and customized solutions.

Transparent and Open Pricing

Pay-as-you-go or recharge your wallet. Monthly cashback!



POPULAR USE CASES

E-commerce

Need to set up a cross-border online store or check for trending products? Count
on us to help you track your competitors' price from any location and make
effective decisions! Gain insights into product availability, pricing
strategies, consumer sentiment and more!


Price Monitoring

Various businesses use price tracking solutions to keep up with the rapidly
shifting markets. Nstproxy provides high-quality proxies to help companies that
make price monitoring tools efficiently gather up-to-date & trustworthy pricing
info from public domain.


AD Verification

Our AdTech Proxy enables you to quickly and smoothly verify ads at scale with
authentic IP addresses around the world. And we can always ensure your paid ads
are shown to the right target audience, preventing spoofing.


Proxies for SEO

SEO has become a fundamental tool for any online business. Proxies for SEO can
provide you access to resident IPs deemed legitimate by online services allowing
you discover the keyword strategies of headline brands in your industry.


Network Testing

Will help developers simulate traffic to see how sites withstand high loads and
edge cases, and assist localization specialists in ensuring that content is
displayed correctly to visitors from relevant locations.


Social Media

Ability for marketers to manage multiple social media accounts to access local
content, along with collecting data on trending topics, searching for
influencers, and conducting sentiment analysis to launch smarter campaigns.


Cybersecurity

Cybersecurity companies supply email security services to safeguard sensitive
communications from cyber-attacks. High-quality proxies can assist organizations
in examining all outgoing and incoming emails to detect potential fraud
attempts.


Travel

Use high-quality dynamic residential always grasp the latest special prices of
air tickets and hotels on various platforms, to provide real and reliable
guarantee for your travel business.


Brand Protection

Actively maintain your brand's public opinion and detect fake customer and
competitor accounts at the source, as well as monitor the market on a large
scale by using Nstproxy.

Start Using


ALL IN ONE PROXY SERVICE

Residential - Country

$1.8 $3.5/GB

49%OFF

   
 * Supported Country-targeting
 * Supported Most Websites.
 * Suggest for: SEO/Social Media/Games/Crypto/NFT and More...
 * No Expiry, Pay-Per-Use
   

Buy Now



Read More

Residential - City

$5 $11/GB

45%OFF

   
 * 400+ City supported
 * High-purity, real IPs
 * Http/Https/Socks5 protocol
 * Customized for business scenarios
   

Buy Now



Read More

IPv6 Proxy

$0.4 $0.8/GB

50%OFF

   
 * Unlimited threads
 * 20 Million IP Pool
 * HTTP/S, SOCKS5
 * New IP on each request
   

Buy Now



Read More

Custom plan

Custom

If Nstproxy's basic product line does not meet your current needs, please
contact our sales consultants to discuss potential collaboration space based on
your specific business, usage pattern, and purchase level.
Contact us



Residential - Country
Residential - City
IPv6 Proxy
Custom plan



Residential - City

$5 /GB

45%OFF

   
 * 400+ City supported
 * High-purity, real IPs
 * Http/Https/Socks5 protocol
 * Customized for business scenarios
   

Buy Now



Read More


NSTPROXY SDKS FOR


DEVELOPERS


DEVELOPERS

Easy to set up & earn profits with us!

Check API documentation





EASY INTEGRATION FOR A SUCCESSFUL LAUNCH

Our Residential Proxies are easy to integrate and manage.

Generator of endpoints

Documentation geared toward developers

Integration of third-party applications

Proxy management of public API

PythonNode.jsGoPHPJavaRubyRust

import requests
username = 'username'
password = 'password'
host = 'gw-us.nstproxy.com'
port = '24125'
proxy = f'http://{username}:{password}@{host}:{port}'
proxy_dict = {
  "http": proxy,
  "https": proxy
}
response = requests.get("API_URL", proxies=proxy_dict)
print(response.text)


const axios = require('axios');

const url = 'API_URL';
axios
  .get(url, {
    proxy: {
      protocol: 'http',
      host: 'gw-us.nstproxy.com',
      port: 24125,
      auth: {
        username: 'username',
        password: 'password',
      },
    },
  })
  .then(res => {
    console.log(res.data);
  })
  .catch(err => {
    console.log('[err]:', err);
  });


package main

import (
    "fmt"
    "io/ioutil"
    "net/http"
    "net/url"
)

func main() {
    username := "username"
    password := "password"
    host := "gw-us.nstproxy.com"
    port := 24125
    proxyURL := fmt.Sprintf("http://%s:%s@%s:%v", username, password, host, port)
    proxy, _ := url.Parse(proxyURL)
    client := &http.Client{
        Transport: &http.Transport{
            Proxy: http.ProxyURL(proxy),
        },
    }

    req, err := http.NewRequest("GET", "API_URL", nil)
    if err != nil {
        panic(err)
    }

    response, err := client.Do(req)

    if err != nil {
        panic(err)
    }
    defer response.Body.Close()

    body, err := ioutil.ReadAll(response.Body)
    if err != nil {
        panic(err)
    }
    fmt.Println(string(body))
}


<?php
$username = 'USERNAME';
$password = 'PASSWORD';
$proxy = 'gw-us.nstproxy.com:24125';
$query = curl_init('API_URL');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
    echo $output;
?>


package example;

import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;

public class Example {
    public static void main(String[] args) throws Exception {
        HttpHost entry = new HttpHost("gw-us.nstproxy.com", 24125);
        String query = Executor.newInstance()
            .auth(entry, "username", "password")
            .execute(Request.Get("API_URL").viaProxy(entry))
            .returnContent().asString();
        System.out.println(query);
    }
}


require "uri"
require 'net/http'

proxy_host = 'gw-us.nstproxy.com'
proxy_port = 24125
proxy_user = 'username'
proxy_pass = 'password'

uri = URI.parse('API_URL')
proxy = Net::HTTP::Proxy(proxy_host, proxy_port, proxy_user, proxy_pass)

req = Net::HTTP::Get.new(uri.path)

result = proxy.start(uri.host, uri.port) do |http|
   http.request(req)
end

puts result.body


#[tokio::main]
async fn main() {

    let http_proxy = reqwest::Proxy::http("http://gw-us.nstproxy.com:24125")
        .unwrap().basic_auth("user", "password");

    let client = reqwest::ClientBuilder::new().proxy(http_proxy).build().unwrap();

    let resp = client.get("API_URL").send().await.unwrap();

    println!("{:?}", resp.text().await.unwrap());

}



GLOBAL NETWORK COVERAGE

Our Proxy service coverage is available in 195 countries and almost all cities
globally. Our dedication to providing you with the best Proxy service worldwide
ensures that you can enjoy stable, high-speed and secure connections anywhere!

Country

195+

City

400+

IPs

100M+

Left-click: rotate, Mouse-wheel/middle-click: zoom, Right-click: pan



United States

2,200,731 IPS

Vietnam

2,119,802 IPS

Russia

1,815,878 IPS

United Kingdom

1,343,921 IPS

Germany

992,047 IPS

Japan

749,304 IPS

Indonesia

573,099 IPS

India

2,327,111 IPS


FREQUENTLY ASKED QUESTIONS


Do you support API docking?

Certainly support, please refer to the API documentation for more details.

How many devices can use your proxy service?


Where can I use your proxies?


How can I set up Nstproxy account?


Nstproxy

Scale up your business with Nstproxy

Talk To An Expert



Contact Us




Products

Residential ProxyIPv6 Proxy

Docs

API DocumentationFAQNST Proxy SDK

Company

Terms of ServicesPrivacy PolicyRefund Policy

Contact us



Follow us


© 2024 NST LABS TECH LTD. ALL RIGHTS RESERVED