Buy Jordanian Proxies
Three-day trial
No set-up costs
Cancel anytime
Choose the proxy solution for your needs
Residential proxies
Use only real IP addresses provided by real internet service providers from all over the world (Excluding State of Texas, USA)
US ISP proxies
SOAX US ISP network is built of residential IPs bought or leased from Internet Service Providers (ISPs) for commercial use, rather than for use from private homes.
Mobile proxies
Easily collect publicly available data with highly reliable mobile proxies from all over the world (Excluding State of Texas, USA).
Data center proxies
Data center proxies offer major advantages in speed, uptime and scalability, making them suitable for large-scale automation.
Choose your proxy plan
$6.60 / GB
15 GB
Residential 15
$ 99 / month 15 GB of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
$6.10 / GB
29 GB
Residential 29
$179 / month 29 GB of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
$5.60 / GB
65 GB
Residential 65
$369 / month 65 GB of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
$4.90 / GB
150 GB
Residential 150
$739 / month 150 GB of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
$2 / GB
250 GB
Residential 250
$499 / month 250 GB of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
Custom
Custom
Enterprise
Custom / month Custom of traffic- Unlimited Concurrent Sessions
- 24/7 Support
- Automatic Proxy Rotation
- Customer Success Manager
$6.60 / GB
15 GB
Mobile 15
$ 99 / month 15 GB of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
$6.10 / GB
29 GB
Mobile 29
$179 / month 29 GB of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
$5.60 / GB
65 GB
Mobile 65
$369 / month 65 GB of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
$4.90 / GB
150 GB
Mobile 150
$739 / month 150 GB of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
$2 / GB
250 GB
Mobile 250
$499 / month 250 GB of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
Custom
Custom
Enterprise
Custom / month Custom of traffic- 3G / 4G / 5G / LTE Coverage
- 24/7 Support
- Customer Success Manager
$6.60 / GB
15 GB
ISP 15
$ 99 / month 15 GB of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
$6.10 / GB
29 GB
ISP 29
$179 / month 29 GB of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
$5.60 / GB
65 GB
ISP 65
$369 / month 65 GB of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
$4.90 / GB
150 GB
ISP 150
$739 / month 150 GB of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
$2 / GB
250 GB
ISP 250
$499 / month 250 GB of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
Custom
Custom
Enterprise
Custom / month Custom of traffic- Unlimited Concurrent Sessions
- Long Session Duration
- Customer Success Manager
$0.65 / GB
75 GB
Datacenter Shared 75
$49 / month 75 GB of traffic- 24/7 Support
- Unlimited Concurrent Sessions
- Customer Success Manager
$0.60 / GB
500 GB
Datacenter Shared 500
$299 / month 500 GB of traffic- 24/7 Support
- Unlimited Concurrent Sessions
- Customer Success Manager
$0.25 / GB
2,000 GB
US DC Shared 2K
$499 / month 2,000 GB of traffic- 24/7 Support
- Unlimited Concurrent Sessions
- Customer Success Manager
Custom
Custom
Enterprise
Custom / month Custom of traffic- 24/7 Support
- Unlimited Concurrent Sessions
- Customer Success Manager
Plan
Traffic
Price per GB
Monthly
Customer Success Manager
Plan
Traffic
Price per GB
Monthly
Customer Success Manager
Plan
Traffic
Price per GB
Monthly
Customer Success Manager
Plan
Traffic
Price per GB
Monthly
Customer Success Manager
Black Friday offer only available for new users registering after 11 November 2024. Black Friday datacenter proxy package only valid for US data.
Existing user? Log in to the dashboard to get your exclusive Black Friday offer!
Unblock even the toughest Jordanian websites
Get started in 5 minutes
$ curl -x "http://username:pw;jo;@proxy.soax.com:9000" -L http://checker.soax.com/api/ipinfo
import requests as req
proxy = {
"http": "http://username:pw;jo;@proxy.soax.com:9000",
"https": "https://username:pw;jo;@proxy.soax.com:9000"
}
resp = req.get("http://checker.soax.com/api/ipinfo",proxies=proxy)
print(resp.text)
<?php
$auth = base64_encode('username:pw;jo;');
$aContext = array(
'http' => array(
'proxy' => 'tcp://proxy.soax.com:9000',
'request_fulluri' => true,
'header' => "Proxy-Authorization: Basic $auth",
),
);
$cxContext = stream_context_create($aContext);
$sFile = file_get_contents("http://checker.soax.com/api/ipinfo", False, $cxContext);
echo $sFile, "
";
?>
using Rebex.Net;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Rebex.Licensing.Key = "ENTER YOUR LICENSING KEY HERE";
var client = new Rebex.Net.HttpRequestCreator();
client.Proxy.ProxyType = ProxyType.Socks5;
client.Proxy.Host = "proxy.soax.com";
client.Proxy.Port = 9000;
client.Proxy.UserName = "username";
client.Proxy.Password = "pw;jo;;;";
var url = "http://checker.soax.com/api/ipinfo";
var httpRequest = client.Create(url);
httpRequest.Headers["Accept"] = "text/html, application/xhtml+xml, image/jxr, */*";
httpRequest.Headers["Accept-Language"] = "en-US,en;q=0.7,ru;q=0.3";
httpRequest.Headers["Accept-Encoding"] = "gzip, deflate";
httpRequest.Headers["Host"] = url;
httpRequest.Headers["Connection"] = "Keep-Alive";
httpRequest.Timeout = 30000;
try
{
var response = httpRequest.GetResponse() as Rebex.Net.HttpResponse;
using (StreamReader sr = new StreamReader(response.GetResponseStream()))
{
var content = sr.ReadToEnd();
Console.WriteLine("Url: " + url + "
" + "Content length: " + content.Length + "
" + "Response:
" + content);
}
}
catch (Exception e)
{
Console.WriteLine("Url " + url + " is failed.
" + e.Message);
}
Console.ReadKey();
}
}
}
Hassle-free proxy management
Precise targeting
Pinpoint the exact location in Jordan you want to target, down to the region or city level.
Choose your carrier
Choose from any of the most popular network operators in Jordan
User-friendly dashboard
Tailor your settings to suit your specific data collection needs with minimal fuss.
Huge pool of IPs
Connect to 126,360 Jordanian IPs or 190 million global proxies.
Pinpoint the exact location in Jordan you want to target, down to the region or city level.
Choose from any of the most popular network operators in Jordan
Tailor your settings to suit your specific data collection needs with minimal fuss.
Connect to 126,360 Jordanian IPs or 190 million global proxies.
More than 10,000 people choose SOAX for their business
A trusted partner in the journey towards sustained success
SOAX proxies are an integral part of our ecosystem, seamlessly integrated into our operations. The SOAX team has become more than just a service provider; they're now a trusted partner in our journey towards sustained success.
Sergey Konovalov, CEO - Mobio Group
Popular use cases
Data collection
Harness the power of SOAX proxies to seamlessly gather public data in Jordan, bypassing CAPTCHAs and avoiding blocks with ease. Utilize our reliable network for efficient web scraping and data collection tailored to your needs.
Social media
With SOAX proxies, effortlessly manage your social media presence across platforms like Facebook, Instagram, and Twitter from Jordan, or maintain multiple accounts without raising flags. Enjoy seamless control and local insights, as if you were browsing right from Amman or Irbid.
Price comparison and monitoring
Keep tabs on prices across platforms like Amazon and eBay, and stay ahead by tracking how competitors price their products in Jordan. Observe price changes to fine-tune your own pricing approach.
Consumer trends
Understand consumer trends in Jordan with SOAX proxies, a vital tool for marketers, analysts, and entrepreneurs. Harness local data to refine your strategy and connect with Jordanian markets effectively.
SEO monitoring
Leverage SOAX proxies to efficiently scrape search engines like Google and Bing, ensuring you stay updated on SEO trends and competitor strategies within Jordan. Monitor your website's search engine performance accurately by collecting data specific to the Jordanian market.
Brand protection
Detect faulty ads, unauthorized intellectual property use, or negative brand mentions. Track counterfeit products or online brand misuse.
Advanced cybersecurity
Secure your digital footprint in Jordan using SOAX proxies, safeguarding against cyber threats and maintaining data integrity. Our Jordanian proxies offer robust protection, enabling you to detect and deflect potential security risks effectively.
Goods purchasing
Unlock access to exclusive sneakers and regional items unique to Jordan with SOAX proxies, bypassing any location-based restrictions with ease. Shop globally, enjoy locally – SOAX makes it possible.
Harness the power of SOAX proxies to seamlessly gather public data in Jordan, bypassing CAPTCHAs and avoiding blocks with ease. Utilize our reliable network for efficient web scraping and data collection tailored to your needs.
With SOAX proxies, effortlessly manage your social media presence across platforms like Facebook, Instagram, and Twitter from Jordan, or maintain multiple accounts without raising flags. Enjoy seamless control and local insights, as if you were browsing right from Amman or Irbid.
Keep tabs on prices across platforms like Amazon and eBay, and stay ahead by tracking how competitors price their products in Jordan. Observe price changes to fine-tune your own pricing approach.
Understand consumer trends in Jordan with SOAX proxies, a vital tool for marketers, analysts, and entrepreneurs. Harness local data to refine your strategy and connect with Jordanian markets effectively.
Leverage SOAX proxies to efficiently scrape search engines like Google and Bing, ensuring you stay updated on SEO trends and competitor strategies within Jordan. Monitor your website's search engine performance accurately by collecting data specific to the Jordanian market.
Detect faulty ads, unauthorized intellectual property use, or negative brand mentions. Track counterfeit products or online brand misuse.
Secure your digital footprint in Jordan using SOAX proxies, safeguarding against cyber threats and maintaining data integrity. Our Jordanian proxies offer robust protection, enabling you to detect and deflect potential security risks effectively.
Unlock access to exclusive sneakers and regional items unique to Jordan with SOAX proxies, bypassing any location-based restrictions with ease. Shop globally, enjoy locally – SOAX makes it possible.
Why companies choose SOAX
Unlimited concurrent sessions
Our Jordanian proxies offer unlimited concurrent sessions, allowing you to connect multiple times simultaneously without any caps. This means you can scale your operations smoothly, without ever hitting a ceiling on connections.
Automatic IP rotation
Whether you want a new IP for every task or you want to set up your own IP rotation rules, the choice is yours. If your connection ever gets interrupted, don't worry. SOAX smoothly steps in and gives you a replacement IP. For those projects that need a steady IP connection, set up a sticky IP that sticks with you,even if the connection fails.
Worldwide coverage, precise targeting
Our proxy network stretches across every corner of the world. The real game-changer, however, lies in our capability to narrow down that coverage to suit your specific needs. With SOAX, you can pinpoint your targeting to exact regions, cities, and even individual internet service providers (ISPs).
Ethically sourced proxies
We know how much privacy matters to you. That's why we our Jordanian are 100% compliant with GDPR. We make sure every device and connection in our network is handled with care. You can trust that we're always keeping your data private.
Automate using API access
Use our API to automate your workflow. Whether you're looking to fetch an updated set of network nodes, manage your Jordanian proxies, or streamline your configurations, our API is your tool for making it happen quickly and easily. Need to check your usage stats or whitelist IPs? Consider it handled.
Multiple connection protocols
Our Jordanian proxies are compatible with several connection protocols, including HTTP(S) and SOCKS5. Mobile & residential proxies also support UDP/QUIC. This variety gives you the flexibility to choose the best way to link up based on what you need.
Our Jordanian proxies offer unlimited concurrent sessions, allowing you to connect multiple times simultaneously without any caps. This means you can scale your operations smoothly, without ever hitting a ceiling on connections.
Whether you want a new IP for every task or you want to set up your own IP rotation rules, the choice is yours. If your connection ever gets interrupted, don't worry. SOAX smoothly steps in and gives you a replacement IP. For those projects that need a steady IP connection, set up a sticky IP that sticks with you,even if the connection fails.
Our proxy network stretches across every corner of the world. The real game-changer, however, lies in our capability to narrow down that coverage to suit your specific needs. With SOAX, you can pinpoint your targeting to exact regions, cities, and even individual internet service providers (ISPs).
We know how much privacy matters to you. That's why we our Jordanian are 100% compliant with GDPR. We make sure every device and connection in our network is handled with care. You can trust that we're always keeping your data private.
Use our API to automate your workflow. Whether you're looking to fetch an updated set of network nodes, manage your Jordanian proxies, or streamline your configurations, our API is your tool for making it happen quickly and easily. Need to check your usage stats or whitelist IPs? Consider it handled.
Our Jordanian proxies are compatible with several connection protocols, including HTTP(S) and SOCKS5. Mobile & residential proxies also support UDP/QUIC. This variety gives you the flexibility to choose the best way to link up based on what you need.
Frequently asked questions
Do you offer HTTP, HTTPS, UDP/QUIC, and SOCKS5 support?
Do you offer 4G mobile proxies?
Can I try your Jordanian proxies for free?
Is web scraping legal in Jordan?
Can't I use free proxies?
What are Jordanian proxies used for?
What carriers do you support in Jordan?
Al Mouakhah Lil Khadamat Al Logesteih Wa Al Itisal, Damamax Jordan, Zain Jordan, Umniah Mobile Company, Batelco Jordan, Jordanian Universities Network, Orange Jordan, Cloudflare Warp, Vtel Holdings Limited/Jordan Co., Jordan Telecommunications Psc, Jordan Cable Tv And Internet Services
What regions are available in Jordan?
Jerash, Amman Governorate, Aqaba, Ma’An, Irbid, Zarqa, Tafielah
What city targeting is available in Jordan?
Ar Ramtha, Jerash, Aqaba, Amman, At Tafilah, Irbid, Zarqa, Maan
Turn web data into a powerful asset
Get access to Jordanian proxies with SOAX
Three-day trial
/No set-up costs
/Cancel anytime