Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 931 Bytes

File metadata and controls

45 lines (32 loc) · 931 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

Create an ISP proxy with optional targeting:

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

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

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

proxy = client.proxies.create(
    type='isp',
    name='My ISP Proxy'
)

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

Configuration Parameters

  • country (required) - ISO 3166 country code. Not many countries are supported for ISP proxies, try to create a proxy in a country to check if it's available.