Purchasing Express Nodes IPs
As of now we are selling Express Nodes IPs via our cloud platform partners. If you would like to directly purchase from us and use it for other platforms, please reach out to hello[@]expressnodes.com
Using Proxies On Cloud
As soon as the IPs are provisioned on your servers or cloud platform, you will be able to access the proxy URLs based on the proxies assigned to your service. If you are purchasing IPs directly from us, you will receive details by an email.
There will be two proxy URLs for each IP (proxy) you purchased:
HTTP_Proxy: http://username:password@ip:port
SOAX5_Proxy: socks5://username:password@ip:port
These URLs contain all the information you need to connect to your proxy. You can use these URLs when parsing the request with proxies.
Using proxies with CURL
curl -x HTTP_PROXY https://ipinfo.io
Using proxies with PHP
<?php
function proxyRequest() {
// Get the HTTP proxy URL from the environment variable.
$proxy = getenv("HTTP_PROXY");
// Initialize cURL with the target URL.
$ch = curl_init("https://ipinfo.io/ip");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the proxy for the cURL request.
curl_setopt($ch, CURLOPT_PROXY, $proxy);
// Execute the request.
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
$response = proxyRequest();
print($response);
?>
Using proxies with Ruby
require 'net/http'
require 'uri'
# Parse the proxy URL from the environment variable.
proxy_uri = URI.parse(ENV['HTTP_PROXY'])
# Create an HTTP object that uses the proxy.
http = Net::HTTP::Proxy(proxy_uri.host, proxy_uri.port, proxy_uri.user, proxy_uri.password)
# Specify the target URL.
uri = URI.parse('http://ipinfo.io/ip')
# Send the GET request via the proxy.
response = http.get(uri)
puts "Your IP is: #{response.body.strip}"
Using proxies with Python
import os
import requests
# Create a proxy dictionary using the environment variables.
proxies = {
"http": os.getenv('DEDICATED_IP_HTTP_PROXY_1')
}
# Make a request through the proxy.
response = requests.get("http://ipinfo.io/ip", proxies=proxies)
print("Your IP is:", response.text.strip())
Support
You are covered with premium support. Our award-winning support team is always there to help if you have any issues related to the service or if you want to understand more about the IPs and our services.
You can reach out to hello[@]expressnodes.com