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

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

Form analysis 0 forms found in the DOM

Text Content

Home

Pricing $0.8/GB

Residential Proxy +500GB free

Allowlisted IPs from real ISPs

Starting from:
$0.8/GB


Unlimited Package-72% off

Unlimited use of residential proxies, subaccounts and ip allowlists

Starting from:
$83/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
Popular places

Japan

156,534 IPs

South Korea

1,047,582 IPs

Mexico

1,389,098 IPs

Brazil

1,094,862 IPs

Canada

2,704,625 IPs

United States

3,599,080 IPs

Germany

472,956 IPs

United Kingdom

345,432 IPs
All Locations
Use Cases

Ad Verification

Test ads, optimize CPA, and verify links to real desktop and mobile IP addresses

Search Engine Optimization

Easily collect valuable SEO data,conduct competitor research

Marketing Social Media

Increase the activity of your products in the network and sell more

Crawl proxy

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

Sneaker Proxies

Let you have every advantage in the snap-up event

Market Survey

Be fully prepared for market expansion

Travel

Send unlimited concurrent connection requests to help you successfully grab
tickets

Review Monitoring

Deeply understand your target audience and predict market trends

Help

Affiliate Program

10% commission

English

English

English 繁體中文 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
Residential proxy starts from $0.8/GB meeting all your,business needs of
crawling proxy!
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.
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
Unlimited Residential Proxy
The proxy plan satisfies unlimited traffic, unlimited IP numbers, unlimited
connections and threads, and unlimited sub-accounts.
From $83/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
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 $83/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
90M+excellent residential proxy
Scale your business with the world's best value proxies, easily set up and use
90M+ 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



90M+

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

Residential Proxy
$ 0.8
/GB

Recommend



Discount

73% off

90M+IPs

195+locations

Strong anonymity & less blocking

Get It Now
Unlimited Package
$ 83
/Day

Recommend



Discount

72% 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
Unlimited Package
Static proxy

IP Pool

Country/Region

Proxy Speed

Sticky/Rotating

Server dynamic scaling

24/7 Customer Support

5GB
$3/GB
Plan Includes
$15/mo
$25
Order now


90,000,000

195+

Fast







40GB

$2.1/GB
Plan Includes
$84/mo
$120
Order now


90,000,000

195+

Fast







150GB

$1.8/GB
Plan Includes
$270/mo
$450
Order now


90,000,000

195+

Fast







280GB

$1.5/GB
Plan Includes
$420/mo
$840
Order now


90,000,000

195+

Fast







1000GB

$0.9/GB
Plan Includes
$900/mo
$3000
Order now


90,000,000

195+

Fast







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
Number:
10
5
10
20
30
50
100
Grab Now

AAA100K+ static residential IPs
Charged per IP
Fast and stable connection
Unlimited bandwidth & sessions
HTTP(S)/SOCKS5
WEEKLY
$27.00
Region:
US - Virginia
US - Virginia
US - New York
Number:
10
5
10
20
30
50
100
Grab Now

Original price:  $3.00
Current Price:   $2.70
BBBWW100K+ static residential IPs
Unlimited bandwidth & sessions
HTTP(S)/SOCKS5
MONTHLY
$48.00
Region:
US - Virginia
US - Virginia
US - New York
Number:
10
5
10
20
30
50
100
Grab Now

Original price:  $6.00
Current Price:   $4.80
BBBWW100K+ static residential IPs
Unlimited bandwidth & sessions
HTTP(S)/SOCKS5
CUSTOM PLAN
?
Region:
US - Virginia
US - Virginia
US - New York
Number:
Custom
Contact Us

100K+ static residential IPs
Charged per IP
Fast and stable connection
Unlimited bandwidth & sessions
HTTP(S)/SOCKS5


UNLIMITED


RESIDENTIAL PLAN IN BRAZIL

Exclusive Brazil residential IP

HTTP(S) / SOCKS5

API or User Pass Auth

Rotating residential proxles

24/7 Email and implementation chat support

Payment method




DAY UNLIMITED

$300/day

Unlimited traffic
Unlimited number of IPs
Unlimited connections and threads
Unlimited sub-account and allowed IP list
Order now


MONTH UNLIMITED

$2500/mo

Unlimited traffic
Unlimited number of IPs
Unlimited connections and threads
Unlimited sub-account and allowed IP list
Order now
PLEASE GO TO THE PERSONAL CENTER TO USE THE UNLIMITED PACKAGE
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 30 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 30 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 90M+ residential IPs. You are
only limited by traffic utilization.

How many connections can I have?

Unlimited

Can I integrate with 3rd party software?

You can integrate Luna proxy with all major automation bots.

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




PAYMENT

Your subscription - -

1month $-/G -G
$-
Coupons
Apply
Pay by
Unable to pay? Contact support
Credit card

Order total:
$-
Discount:
$75.00
Crypto Currencies

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

Crypto Currencies-New

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
UnionPay

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


SCAN CODE FOR PAYMENT


$


For your payment security, please verify



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

support@lunaproxy.com

Contact us on Telegram
Popular Places
Japan Germany Korea United States United Kingdom
Learn more
FAQ Refer a Friend
Useful Links
BitBrowser SEO Bots DNY123 AMZ123 xlogin r See More

Copyright © 2022 Superio. All Right Reserved.

English



English

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