Documentation
Everything you need to integrate Netalis proxy infrastructure into your applications. Get started in minutes with our comprehensive guides.
Quick Start
Get started with Netalis proxies in under 5 minutes. Follow these simple steps to make your first request.
Get Your API Credentials
Sign up for an account and retrieve your API key from the dashboard.
Configure Your Proxy
Set up proxy authentication using your username and password.
Make Your First Request
Use our proxy endpoints in your application to start routing traffic.
use reqwest::Proxy;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Configure proxy with authentication
let proxy = Proxy::all("http://H12Io7n2.netalis.link")?
.basic_auth("username", "password");
// Build client with proxy
let client = reqwest::Client::builder()
.proxy(proxy)
.build()?;
// Make request through proxy
let response = client
.get("https://api.example.com/data")
.send()
.await?;
let body = response.text().await?;
println!("{}", body);
Ok(())
}[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }API Endpoints
Connect to our global proxy network using these endpoints
Residential Proxies
HTTP/HTTPSH12Io7n2.netalis.linkGlobal residential proxy network with 150M+ IPs across 195 countries.
ISP Proxies
HTTP/HTTPSUi2u7n2O.netalis.linkStatic residential IPs with unlimited bandwidth and high performance.
Mobile Proxies
HTTP/HTTPS78n2Oa2u.netalis.linkReal mobile carrier IPs for app testing and mobile-first applications.
SOCKS5 Protocol
SOCKS522u7n2Oa.netalis.linkSOCKS5 protocol support for advanced use cases and applications.
Authentication
Username:Password Format
Use your account credentials to authenticate proxy requests:
username:password@H12Io7n2.netalis.linkTargeting Parameters
Add targeting to your username for specific locations:
username-country-us:passwordUS proxiesusername-city-newyork:passwordNew York cityusername-session-abc123:passwordSticky sessionLanguage Examples
Node.js
const axios = require('axios');
const proxy = {
host: 'H12Io7n2.netalis.link',
auth: {
username: 'your-username',
password: 'your-password'
}
};
axios.get('https://api.example.com', { proxy })
.then(response => console.log(response.data));PHP
$ch = curl_init('https://api.example.com');
curl_setopt($ch, CURLOPT_PROXY,
'H12Io7n2.netalis.link');
curl_setopt($ch, CURLOPT_PROXYUSERPWD,
'username:password');
$response = curl_exec($ch);Rust
use reqwest::Proxy;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let proxy = Proxy::all("http://H12Io7n2.netalis.link")?
.basic_auth("username", "password");
let client = reqwest::Client::builder()
.proxy(proxy)
.build()?;
let response = client
.get("https://api.example.com/data")
.send()
.await?;
println!("{}", response.text().await?);
Ok(())
}API Endpoints
Connect to our global proxy network using these endpoints
Residential Proxies
HTTP/HTTPSH12Io7n2.netalis.linkGlobal residential proxy network with 150M+ IPs across 195 countries.
ISP Proxies
HTTP/HTTPSUi2u7n2O.netalis.linkStatic residential IPs with unlimited bandwidth and high performance.
Mobile Proxies
HTTP/HTTPS78n2Oa2u.netalis.linkReal mobile carrier IPs for app testing and mobile-first applications.
SOCKS5 Protocol
SOCKS522u7n2Oa.netalis.linkSOCKS5 protocol support for advanced use cases and applications.
Authentication
Username:Password Format
Use your account credentials to authenticate proxy requests:
username:password@H12Io7n2.netalis.linkTargeting Parameters
Add targeting to your username for specific locations:
username-country-us:passwordUS proxiesusername-city-newyork:passwordNew York cityusername-session-abc123:passwordSticky sessionMore Examples
Python
import requests
proxies = {
'http': 'http://username:password@H12Io7n2.netalis.link',
'https': 'http://username:password@H12Io7n2.netalis.link'
}
response = requests.get('https://api.example.com', proxies=proxies)
print(response.json())Go
package main
import (
"net/http"
"net/url"
)
func main() {
proxyURL, _ := url.Parse("http://username:password@H12Io7n2.netalis.link")
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyURL(proxyURL),
},
}
resp, _ := client.Get("https://api.example.com/data")
}Common Use Cases
Web Scraping & Data Collection
Collect data from websites at scale with residential proxies. Bypass rate limits and geo-restrictions with rotating IPs from 195 countries.
Price Monitoring & Competitor Analysis
Track competitor pricing, product availability, and market trends in real-time with reliable proxy infrastructure.
Ad Verification & Brand Protection
Verify ad placements, detect fraud, and protect your brand across different geographic locations and devices.
SEO Monitoring & SERP Tracking
Monitor search engine rankings across different locations and devices without triggering captchas or blocks.
Market Research & Social Media
Gather market intelligence and social media data from different regions for comprehensive market analysis.
Need Help Getting Started?
Our technical team is available 24/7 to help you integrate Netalis proxies into your applications. Get personalized assistance from our experts.