Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 970 Bytes

File metadata and controls

51 lines (38 loc) · 970 Bytes
title ISP Proxies

ISP (Internet Service Provider) proxies combine the speed of datacenter proxies with better legitimacy, as they use IP addresses assigned by real ISPs.

Configuration

ISP proxies require a country to route traffic through:

import { Kernel } from '@onkernel/sdk';
const kernel = new Kernel();

const proxy = await kernel.proxies.create({
  type: 'isp',
  name: 'US ISP Proxy',
  config: {
    country: 'US'
  }
});

const browser = await kernel.browsers.create({
  proxy_id: proxy.id
});
import kernel
client = kernel.Kernel()

proxy = client.proxies.create(
    type='isp',
    name='US ISP Proxy',
    config={
        'country': 'US'
    }
)

browser = client.browsers.create(
    proxy_id=proxy.id
)

Configuration Parameters

  • country (required) - ISO 3166 country code (e.g., US, GB, DE) or EU for European Union exit nodes