first-screen-bg first-screen-bg

全球住宅代理 - $0.48/GB

LokiProxy擁有全球3500萬+IP資源,完美適配跨境電商、社媒運營、市場調研等業務場景。

custom-hero-bg

35M+代理池

99.9%成功率

响應時間<0.5s

無限並發請求

HTTP & SOCKS5

滿足各種需求的代理

LokiProxy專注為您的網路數據項目提供全面支持,助力業務高效運行。

Rotating Residential Proxy

動態住宅代理

覆蓋3500萬+住宅IP,每次請求自動更換IP,輕鬆應對爬取和數據採集需求。

  • check 3500万+住宅IP
  • check >國家/州定位
  • check 無限並發會話
  • check 粘性/輪換選項
Rotating Residential Proxy
Static Residential Proxy

不限量住宅代理

全球動態IP池,無限流量使用,支持粘性和輪換選項,保證高性能連接。

  • check 無流量限制
  • check 隨機分配國家
  • check 專用服務器
  • check 可定製帶寬
SOCKS5 Proxy

短效住宅IP

按 IP 計費,未使用的IP餘額永不過期。通過賬密認證或 IP 白名單輕鬆獲取住宅代理服務。

  • check 3500萬+住宅IP
  • check 國家/州/城市定位
  • check 99.9% 高成功率
  • check 會話持續時間可達 24 小時
Static Residential Proxy

靜態住宅代理

獨享IP,提供長期穩定的獨享IP地址,適用於電商、社交媒體等場景。

  • check 真實住宅IP
  • check 100%獨享
  • check 高可用性
  • check 最长90天续租
Rotating Residential Proxy

高質量全球代理池

依託領先的代理服務,LokiProxy 為用戶提供穩定、可靠、合規的全球代理資源。

United States

美國

1,578,420 IPs

United Kingdom

英國

538,330 IPs

Germany

德國

442,145 IPs

Canada

加拿大

296,370 IPs

Brazil

巴西

949,015 IPs

Australia

澳大利亞

426,730 IPs

35M+
動態住宅IP
195+
國家/地區
99.8%
IP純淨度

高效、智能、無縫連接——您理想的代理解決方案

easily 高兼容性

與任何工具輕鬆集成

LokiProxy 支持多種API接口和開發工具,快速集成到您的現有系統中,無需複雜配置,節省時間與成本。

立即開始
bg

#include "stdafx.h"
    #include "curl/curl.h"
    #pragma comment(lib, "libcurl.lib")
    static size_t write_buff_data(char *buffer, size_t size, size_t nitems, void *outstream)
    {
        memcpy(outstream, buffer, nitems * size);
        return nitems * size;
    }

    int GetUrlHTTP(char *url, char *buff)
    {
        CURL *curl;
        CURLcode res;
        curl = curl_easy_init();
        if (curl)
        {
       
            // api http
            curl_easy_setopt(curl, CURLOPT_PROXY, "http://156.229.21.94:1000");
            curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)buff);
            curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_buff_data);
            curl_easy_setopt(curl, CURLOPT_URL, url);
            curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 10L);
            curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 50L);
            curl_easy_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, 2000000L);

            res = curl_easy_perform(curl);
            curl_easy_cleanup(curl);
            if (res == CURLE_OK)
            {
                return res;
            }
            else
            {
                printf("%d", res);
            }
        }
        return res;
    }

    int GetUrlSocks5(char *url, char *buff)
    {
        CURL *curl;
        CURLcode res;
        curl = curl_easy_init();
        if (curl)
        {
            // api socks5
            curl_easy_setopt(curl, CURLOPT_PROXY, "socks5://156.229.21.94:1000");
            curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)buff);
            curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_buff_data);
            curl_easy_setopt(curl, CURLOPT_URL, url);
            curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 10L);
            curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 50L);
            curl_easy_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, 2000000L);
            res = curl_easy_perform(curl);
            curl_easy_cleanup(curl);
            if (res == CURLE_OK)
            {
                return res;
            }
            else
            {
                printf("%d", res);
            }
        }
        return res;
    }

    int main()
    {
        char *buff = (char *)malloc(1024 * 1024);
        memset(buff, 0, 1024 * 1024);
        GetUrlHTTP("http://ipinfo.io/json", buff);
        printf("response: %s", buff);
        memset(buff, 0, 1024 * 1024);
        GetUrlSocks5("http://ipinfo.io/json", buff);
        printf("response: %s", buff);
        free(buff);
        Sleep(10 * 1000);
        return 0; }

package main

    import (
    	"log"

    	"github.com/go-resty/resty/v2"
    )

    func main() {
    	// api socks5
    	client := resty.New()
    	client.SetProxy("socks5://156.229.21.94:1000")
    	response, err := client.R().Get("http://ipinfo.io/json")
    	if err != nil {
    		panic(err)
    	}
    	log.Println(string(response.Body()))

    	// api http
    	client = resty.New()
    	client.SetProxy("http://156.229.21.94:1000")
    	response, err = client.R().Get("http://ipinfo.io/json")
    	if err != nil {
    		panic(err)
    	}
    	log.Println(string(response.Body()))
    }

                                        

 // api http
    require("request-promise")({
      url: "http://ipinfo.io/json",
      proxy: "http://156.229.21.94:1000",
    }).then(
      function (data) {
        console.log(data);
      },
      function (err) {
        console.error(err);
      }
    ); 

    <?php
    // SOCKS5 proxy configuration (NO AUTH)
    $proxyHost = '156.229.21.94'; // Proxy host
    $proxyPort = '1000'; // Proxy port

    // IP info URL
    $ipInfoUrl = 'https://ipinfo.io/json';

    // Initialize cURL
    $ch = curl_init();

    // Set cURL options
    curl_setopt($ch, CURLOPT_URL, $ipInfoUrl); // URL to request
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the response as a string
    curl_setopt($ch, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort); // Set the SOCKS5 proxy
    curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5_HOSTNAME); // Set proxy type as SOCKS5 and resolve DNS through proxy
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Disable SSL peer verification
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // Disable SSL host verification
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); // 30-second connection timeout
    curl_setopt($ch, CURLOPT_TIMEOUT, 60); // 60-second total timeout
    curl_setopt($ch, CURLOPT_VERBOSE, true); // Enable verbose logging for debugging

    // Execute the request
    $response = curl_exec($ch);

    // Check for cURL errors
    if ($response === false) {
        echo "cURL Error: " . curl_error($ch) . "";
    } else {
        echo "Response from IP info:";
        echo $response;
    }

    // Close the cURL session
    curl_close($ch);
          
?>

 import java.net.*;
    import java.net.http.*;
    import java.time.Duration;

    public class HttpClientSocksNoAuth {
        public static void main(String[] args) throws Exception {
            HttpClient client = HttpClient.newBuilder()
                .proxy(ProxySelector.of(
                    new InetSocketAddress("156.229.21.94", 1000) // Set the proxy server address and port you extracted
                ))
                .connectTimeout(Duration.ofSeconds(10))
                .build();

            HttpRequest req = HttpRequest.newBuilder()
                .uri(URI.create("https://ipinfo.io/json"))
                .timeout(Duration.ofSeconds(10))
                .header("User-Agent", "Mozilla/5.0")
                .GET()
                .build();

            HttpResponse resp =
                client.send(req, HttpResponse.BodyHandlers.ofString());
            if (resp.statusCode() == 200) {
                System.out.println(resp.body());
            } else {
                System.err.println("HTTP error: " + resp.statusCode());
            }
        }
    }

    # api socks5
    import requests

    response = requests.get(
        "http://ipinfo.io/",
        proxies={
            "http": "socks5://156.229.21.94:1000",
            "https": "socks5://156.229.21.94:1000",
        },
    )
    print(response.text)

    # api http

    import requests

    response = requests.get(
        "http://ipinfo.io/",
        proxies={
            "http": "http://156.229.21.94:1000",
            "https": "http://156.229.21.94:1000",
        },
    )
    print(response.text)
IP Resource Management Dashboard

靈活管理IP資源

輕鬆創建和管理代理用戶,設置IP白名單。允许实时流量管理,使用跟踪和即时调整以实现最佳性能。

powerful 功能強大的控制面板
powerful 實時監控代理使用情況
探索儀表板
Ethical Proxy Network

道德代理網絡

全球可信IP資源,確保您的數據採集合法且高效。

Worry-Free Customer Support

無憂客戶支持

專業支持快速響應,解決您的後顧之憂。

Industry-Recognized Preferred Solution

靈活轉售和分配

輕鬆將我們的高質量代理服務集成並轉售給您的客戶。

客戶如何使用LokiProxy?

輕鬆集成我們的代理服務,快速訪問全球IP資源,滿足各類合規業務需求。

Data Scraping

公開數據採集

通過合規手段,高效採集公開數據

Learn more Learn more
Market Research

市場調研

通過代理抓取網絡趨勢和分析數據

Learn more Learn more
Ad Verification

廣告驗證

從不同地點監控和評估廣告展示效果

Learn more Learn more
Social Media

社交媒體

社交媒體帳戶管理、公開內容監測與抓取

Learn more Learn more
E-commerce

電子商務

精準收集和監控全球電商平臺的數據

Learn more Learn more
Travel Aggregation

旅遊聚合

即時掌握各平台機票及飯店的更新特價

Learn more Learn more

為什麼專業人士選擇我們