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.

1

Get Your API Credentials

Sign up for an account and retrieve your API key from the dashboard.

2

Configure Your Proxy

Set up proxy authentication using your username and password.

3

Make Your First Request

Use our proxy endpoints in your application to start routing traffic.

Rust Example
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(())
}
Add to Cargo.toml
[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/HTTPS
H12Io7n2.netalis.link

Global residential proxy network with 150M+ IPs across 195 countries.

ISP Proxies

HTTP/HTTPS
Ui2u7n2O.netalis.link

Static residential IPs with unlimited bandwidth and high performance.

Mobile Proxies

HTTP/HTTPS
78n2Oa2u.netalis.link

Real mobile carrier IPs for app testing and mobile-first applications.

SOCKS5 Protocol

SOCKS5
22u7n2Oa.netalis.link

SOCKS5 protocol support for advanced use cases and applications.

Authentication

Username:Password Format

Use your account credentials to authenticate proxy requests:

username:password@H12Io7n2.netalis.link

Targeting Parameters

Add targeting to your username for specific locations:

username-country-us:passwordUS proxies
username-city-newyork:passwordNew York city
username-session-abc123:passwordSticky session

Language 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/HTTPS
H12Io7n2.netalis.link

Global residential proxy network with 150M+ IPs across 195 countries.

ISP Proxies

HTTP/HTTPS
Ui2u7n2O.netalis.link

Static residential IPs with unlimited bandwidth and high performance.

Mobile Proxies

HTTP/HTTPS
78n2Oa2u.netalis.link

Real mobile carrier IPs for app testing and mobile-first applications.

SOCKS5 Protocol

SOCKS5
22u7n2Oa.netalis.link

SOCKS5 protocol support for advanced use cases and applications.

Authentication

Username:Password Format

Use your account credentials to authenticate proxy requests:

username:password@H12Io7n2.netalis.link

Targeting Parameters

Add targeting to your username for specific locations:

username-country-us:passwordUS proxies
username-city-newyork:passwordNew York city
username-session-abc123:passwordSticky session

More 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.