www.lunaproxy.com Open in urlscan Pro
163.181.92.231  Public Scan

URL: https://www.lunaproxy.com/?utm-source
Submission: On June 07 via api from FI — Scanned from FI

Form analysis 0 forms found in the DOM

Text Content

Home

Pricing $0.8/GB

Residential Proxy New upgrade!

Allowlisted IPs from real ISPs
Starting from:
$0.8/GB


Rotating ISP Proxies-75% off

The combined power of data center and residential IP
Starting from:
$2/GB


Unlimited Package-54% off

Unlimited use of residential proxies, subaccounts and ip allowlists
Starting from:
$76/day


Static proxy

Private residential IP that does not rotate
Starting from:
$1.0/IP

API

API

Acquire IP + port through Allowlist authentication


User & Pass Auth

Multiple proxy user accounts are supported
Locations

Japan

156,534 IPs

South Korea

1,047,582 IPs

Canada

2,704,625 IPs

United States

3,599,080 IPs

Mexico

1,389,098 IPs

Brazil

1,094,862 IPs

Germany

472,956 IPs

United Kingdom

345,432 IPs
All Locations
Use Cases

Travel

Crawl proxy

Market Survey

Sneaker Proxies

Ad Verification

Search Engine Optimization

Marketing Social Media

Review Monitoring

Help

Affiliate Program

10% commission

English

English

EN-English 繁-繁體中文 VI-Việt Nam
Log In
sign up

-----

Dashboard

Log out



Home

Pricing

Log in log out

Contact us on Telegram


The Best Value Residential Proxy Service Provider
Best price on the market, Residential Proxies $0.8 for 1GB
Start Now




Why Choose LunaProxy?
Lunaproxy is trusted proxy IP service provider, use our proxy infrastructure to
provide support for your crawlers.
Residential Proxy
Private IP address, giving you complete anonymity and high success rate.
Rotating ISP Proxies
Enjoy long meetings without any interruptions.
Unlimited Package
Unlimited use of graded residential proxies
Static Proxy
Wide coverage, stable and high-speed static residential IP proxy network.
Residential Proxy
A data capture proxy that adapts to any project size and helps you collect data
effectively with 99.99% accuracy.
From $0.8/GB
Rotating ISP Proxies
Combine the speed of a data center proxy with the anonymity of a residential
proxy.
From $2/GB
Unlimited Residential Proxy
The proxy plan satisfies unlimited traffic, unlimited IP numbers, unlimited
connections and threads, and unlimited sub-accounts.
From $76/day
Static Proxy
Instant access to a static residential IP address that can be reserved long term
(ISP proxy)
From $1/IP
Why choose lunaProxy?
Lunaproxy is trusted proxy IP service provider, use our proxy infrastructure to
provide support for your crawlers.
Residential Proxy
Private IP address, giving you complete anonymity and high success rate.
Residential Proxy
A data capture proxy that adapts to any project size and helps you collect data
effectively with 99.99% accuracy.
From $0.8/GB
Rotating ISP Proxies
Enjoy long meetings without any interruptions.
Rotating ISP Proxies
Combine the speed of a data center proxy with the anonymity of a residential
proxy.
From $2/GB
Unlimited Package
Unlimited use of graded residential proxies
Unlimited Residential Proxy
The proxy plan satisfies unlimited traffic, unlimited IP numbers, unlimited
connections and threads, and unlimited sub-accounts.
From $76/day
Static Proxy
Wide coverage, stable and high-speed static residential IP proxy network.
Static Proxy
Instant access to a static residential IP address that can be reserved long term
(ISP proxy)
From $1/IP
200M+Excellent Residential Proxy
Scale your business with the world's best value proxies, easily set up and use
200M+ residential proxies, connect to country or city level locations around the
world. Enables you to efficiently collect public data.
Unlimited concurrent sessions
Average 99.99% success rate
Country and city level targeting

Overcoming Prohibitions, Verification Codes
With more advanced features than any other provider, you never have to worry
about getting banned again. Choose a proxy from 195 countries. Create sub-users.
Select ISP target, proxy session type, all with the click of a button.
Start Now

Easy Integration With All Existing Tools
We've made it as easy as possible to use your residential proxy with hundreds of
3rd party apps. Just copy the proxy credentials and paste them into your
software of choice.
Start Now

Code Example :

curl -x pr.lunaproxy.com:12233 -U "customer-USER:PASS"
http://myip.lunaproxy.com   
							

import requests

username = "customer-USER"
password = "PASS"
proxy = "ip:port"

proxies = {
	'http': f'http://{username}:{password}@{proxy}',
	'https': f'http://{username}:{password}@{proxy}'
}

response = requests.request(
	'GET',
	'http://myip.lunaproxy.com',
	proxies=proxies,
)

print(response.text)
							

import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'

const username = 'customer-USER';
const password = 'PASS';
const proxy = 'ip:port'

const agent = createHttpsProxyAgent(
  `http://${username}:${password}@${proxy}`
);

const response = await fetch('http://myip.lunaproxy.com', {
  method: 'get',
  agent: agent,
});

console.log(await response.text());


							

<?php
$username = 'customer-USER';
$password = 'PASS';
$proxy = 'ip:port';

$query = curl_init('http://myip.lunaproxy.com');

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 main

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

func main() {
	const username = "customer-USER"
	const password = "PASS"
	const proxy = "ip:port"

	proxyUrl, _ := url.Parse(
	fmt.Sprintf(
		"http://%s:%s@%s",
		username,
		password,
		proxy,
	),
	)

	client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
	request, _ := http.NewRequest("GET",
	"http://myip.lunaproxy.com",
	nil,
	)

	request.SetBasicAuth(username, password)
	response, err := client.Do(request)
	if err != nil {
	fmt.Println(err)
	return
	}

	responseText, _ := ioutil.ReadAll(response.Body)
	fmt.Println(string(responseText))
}
								

package example;

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

public class Main {
	public static void main(String[] args) throws Exception {

	String username = "customer-USER";
	String password = "PASS";
	String proxyHost = "pr.lunaproxy.com";
	int proxyPort = 12233;

	HttpHost entry = new HttpHost(proxyHost, proxyPort);
	String query = Executor.newInstance()
		.auth(entry, username, password)
		.execute(
			Request.Get("http://myip.lunaproxy.com")
					.viaProxy(entry)
			)
		.returnContent()
		.asString();
	System.out.println(query);
	}
}
							

using System;
using System.Net;

class Example
{
	static void Main()
	{   
	var username = "customer-USER";
	var password = "PASS";
	var proxy = "ip:port";

	var client = new WebClient();
	client.Proxy = new WebProxy(proxy);
	client.Proxy.Credentials = new NetworkCredential(username, password);
	Console.WriteLine(
		client.DownloadString("http://myip.lunaproxy.com")
	);
	}
}
						

copy
cURL
Python
Node.js
PHP
GO
Java
C#
Get Customer Support Anytime
Our Success Team and Dedicated Account Managers are ready to help clients
24/7 live support
No matter what time zone you are in, our help is with you
Satisfaction 5.0
Our users are more than willing to contact support again
Start Now

Proxy Service Application Scenario
Use easy to set endpoints and avoid IP blocking. Easily obtain local
information, validate localized sites,
conduct market research or explore international competitors.
Crawl Proxy
Using city-level high-quality proxy can effectively improve the success rate of
data capture
Learn more

Marketing Social Media
Increase the activity of your products in the network and sell more
Learn more

Search Engine Optimization
Easily collect valuable SEO data,conduct competitor research
Learn more

Ad Verification
Test ads, optimize CPA, and verify links to real desktop and mobile IP addresses
Learn more

Market Survey
Be fully prepared for market expansion
Learn more

Travel
Send unlimited concurrent connection requests to help you successfully grab
tickets
Learn more

Sneaker Proxies
Using city-level high-quality proxy can effectively improve the success rate of
data capture
Learn more

Review Monitoring
Deeply understand your target audience and predict market trends
Learn more

First-Class Residential Proxy Service Provider
Don't just believe what we say, please look at the feedback from customers
Charles W.

"The software we run needs a residential proxy to run,and the LunaProxy team
provided incredible support during the entire setup process!"
Seba stian scura

"The possibility to narrow geo and make it precisely targeted! Also, customer
support and the team of sales are superb."
Paul Dowski

"The best proxy supplier, the cheapest residential proxy, is very clear. Pay
close attention to your customer experience at a favorable price. Lovely people
work together!"
Salame ville

"lt took less than 1 minute to registerand make an order. Straightforwardand
simple.setup guide and FAQ'sare there to help if you need help."
Lunaproxy Help Access Global Data
Canada

2,704,625 IPs


Untited States

3,599,080 IPs


Brazil

1,094,862 IPs


United Kingdom

345,432 IPs


South Africa

1,047,582 IPs


Malaysia

387,139 IPs


Japan

156,534 IPs


Australia

116,391 IPs



200M+

Real device IP

195

City location

Full anonymous

Safe and reliable

Infinite connection

Wireless bandwidth
Explore All Locations
Residential Proxies Pricing

Average 99.9% success rate

Unlimited connection requests

National positioning

HTTP(S) / SOCKS5

Rotate residential IP

NEW UPGRADE!

Residential Proxy
$ 0.8
/GB

Recommend



Discount

73% off

200M+ excellent residential Proxy

195+ locations

Ultra-anonymous and lightning-fast

Get It Now
Rotating ISP Proxies
$ 2
/GB

Recommend



Discount

75% off

Extended meeting

High Anonymity

Quick Scratch

Get It Now
Unlimited Package
$ 76
/Day

Recommend



Discount

54% off

Unlimited traffic

Unlimited number of IPs

Unlimited concurrent sessions

Get It Now
Static Proxy
$ 1
/IP

Recommend



Custom Plan?

Contact us

Stable network connection

Top speed & best performance

Permanent Static IP sessions

Get It Now


RESIDENTIAL PROXIES PRICING

Residential
Proxy
Dynamic
ISP Proxy
Unlimited
Package
Static
Proxy
5GB
$15/90Days
200M+
Residential IP
Validity period
90Days
$3/GB


Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * IP lasts for 90 minutes
 * IP availability rate is 99.9%
 * Invalid IP is not billed

40GB

$84/90Days
200M+
Residential IP
Validity period
90Days
$2.1/GB


Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * IP lasts for 90 minutes
 * IP availability rate is 99.9%
 * Invalid IP is not billed

150GB

$270/90Days
200M+
Residential IP
Validity period
90Days
$1.8/GB


Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * IP lasts for 90 minutes
 * IP availability rate is 99.9%
 * Invalid IP is not billed

280GB

$420/90Days
200M+
Residential IP
Validity period
90Days
$1.5/GB


Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * IP lasts for 90 minutes
 * IP availability rate is 99.9%
 * Invalid IP is not billed

1000GB

$850/90Days
200M+
Residential IP
Validity period
90Days
$0.85/GB


Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * IP lasts for 90 minutes
 * IP availability rate is 99.9%
 * Invalid IP is not billed

IP Pool

Country/Region

Proxy Speed

Sticky/Rotating

Server dynamic scaling

24/7 Customer Support


DAY
$10.00
Region:
US-Virginia
US-Virginia
US-New York
US-Las Vegas
UK-London
China-Hong Kong
Number:
10
5
10
20
30
50
100
Grab Now

HTTP(S)/Socks5
100K Residential Static IP
100% Private Residential IP
Chrome & Firefox Browser Extension
100% Abuse-Free Guarantee
WEEKLY
$27.00
Region:
US-Virginia
US-Virginia
US-New York
US-Las Vegas
UK-London
China-Hong Kong
Number:
10
5
10
20
30
50
100
Grab Now

HTTP(S)/Socks5
100K Residential Static IP
100% Private Residential IP
Chrome & Firefox Browser Extension
100% Abuse-Free Guarantee
MONTHLY
$48.00
Region:
US-Virginia
US-Virginia
US-New York
US-Las Vegas
UK-London
China-Hong Kong
Number:
10
5
10
20
30
50
100
Grab Now

HTTP(S)/Socks5
100K Residential Static IP
100% Private Residential IP
Chrome & Firefox Browser Extension
100% Abuse-Free Guarantee
CUSTOM PLAN
?
Region:
US-Virginia
US-Virginia
US-New York
US-Las Vegas
UK-London
China-Hong Kong
Number:
Custom
Contact Us

HTTP(S)/Socks5
100K Residential Static IP
100% Private Residential IP
Chrome & Firefox Browser Extension
100% Abuse-Free Guarantee
Day
70% off
1 Day
$280

Order Now

 * Starter includes:
 * More than 50 regions around the world
 * HTTTP(S)/SOCKS5
 * Random country
 * API or account secret Proxy
 * Real dynamic residential Proxy

Week
50% off
7 Days
$900

Order Now

 * Starter includes:
 * More than 50 regions around the world
 * HTTTP(S)/SOCKS5
 * Random country
 * API or account secret Proxy
 * Real dynamic residential Proxy

Month
30 Days
$2300

Order Now

 * Starter includes:
 * More than 50 regions around the world
 * HTTTP(S)/SOCKS5
 * Random country
 * API or account secret Proxy
 * Real dynamic residential Proxy

Three Month
32% off
90 Days
$6400

Order Now

 * Starter includes:
 * More than 50 regions around the world
 * HTTTP(S)/SOCKS5
 * Random country
 * API or account secret Proxy
 * Real dynamic residential Proxy

10GB
$80/Mo
90M+
Residential ISP
IP retention time
12 hours
$8/GB

Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * Unlimited targets and high-speed grabbing
 * Ultra stealth and ultra stability

40GB
$240/Mo
90M+
Residential ISP
IP retention time
12 hours
$6/GB

Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * Unlimited targets and high-speed grabbing
 * Ultra stealth and ultra stability

100GB
$500/Mo
90M+
Residential ISP
IP retention time
12 hours
$5/GB

Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * Unlimited targets and high-speed grabbing
 * Ultra stealth and ultra stability

500GB
$1000/Mo
90M+
Residential ISP
IP retention time
12 hours
$2/GB

Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * Unlimited targets and high-speed grabbing
 * Ultra stealth and ultra stability

1000GB
$3000/Mo
90M+
Residential ISP
IP retention time
12 hours
$3/GB

Order Now

 * Starter includes:
 * National and city-level positioning
 * HTTP(S)/SOCKS5
 * Unlimited concurrency and bandwidth
 * Unlimited targets and high-speed grabbing
 * Ultra stealth and ultra stability

Solve Your Usage Problems
Can I choose a proxy from a specific location?

Yes, our easy to use location selector allows you to quickly select country,
state and city locations.

How long can my IP be kept?

You can choose to have a rotating IP (which gives you a new IP address for each
connection request) or keep the same IP for up to 90 minutes (sticky). This is
controlled in your client dashboard.

Are these rotating IPs or static IPs?

These are rotating residential proxies. You can choose to enable Sticky IP. This
means you can keep the same IP for up to 90 minutes.
We also offer static residential proxies for purchase. Click here to learn more
about static residential proxies.

How many IPs can I use?

You have full access to our entire network of over 200M+ residential IPs. You
are only limited by traffic utilization.

How do residential proxies work?

Residential proxies route the internet traffic through an intermediary server.
This server changes the IP address of your connection request. Residential
proxies differ from other kinds of proxies because they are connected to real
mobile and desktop devices, which are used as the intermediaries for your
connections.

How much are residential proxies?

Our plans start at $0.8/GB with up to an additional 500GB free. See prices
section for moredetails

What features will I find in the dashboard?

You will be able to:
View your daily usage statistics.
Manage sub-users for specific goals.
management endpoint
More…
Not using LunaProxy yet?
Get your account here.

Customer support

Have Technical or Billing issues?
Or just want a Custom Quote?
Create a new work order, we will serve you wholeheartedly.
Please fill in the information
Your Name*
Your Email*
Your Phone Number
Description*
Submit




Your subscription - -

Time:One Month

Price:$-/G

Flow:-G

$-
Apply
Payment Methods
Unable to pay? Contact support
Credit card

Order total:
$-
Discount:
$75.00
Crypto Currencies

Order total:
$-
Discount:
$75.00
Data plan
+-G
Traffic as Presents:
+-G
Pay Exclusive+5% traffic:
+-G
Total:
+-G
Alipay

Order total:
$-
Discount:
$75.00
PayPal

Order total:
$-
Discount:
$75.00
UnionPay

Order total:
$-
Discount:
$-
By submitting this form, you agree to our Terms of Service、Refund Policy  and
Aml Compliance Program 
Complete Purchase
Complete Purchase
Complete Purchase
Complete Purchase
* The package amount is too large, please go to Crypto Currencies purchase


SCAN CODE FOR PAYMENT


$


For your payment security, please verify



Customer Service
Hi there!
We're here to answer your questiona about LunaProxy.
1

How to use proxy?

2

Which countries are there static proxies?

3

How to use proxies in third-party tools?

4

How long does it take to receive the proxy balance or get my new account
activated after the payment?

5

Do you offer payment refunds?

Help Center

Get Proxies
API User & Pass Auth
About us
Terms of Service Refund Policy Aml Compliance Program Shipping Terms Privacy
Policy
Pricing
Residential Proxy Rotating ISP Proxies Static Proxy Unlimted Package
Contact Us

support@lunaproxy.com

Contact us on Telegram Twitter Youtube Facebook
Popular Places
Japan Germany Korea United States United Kingdom
Learn more
FAQ Refer a Friend
Useful Links
比特指纹浏览器 Clonbrowser MuLogin xlogin SEO Bots DNY123 See More

Due to policy reasons, this service is not available in mainland China. Thank
you for your understanding!

Copyright © 2022 Superio. All Right Reserved.

English



English

EN-English 繁-繁體中文 VI-Việt Nam
Contact Us
support@lunaproxy.com