Documentation Index Fetch the complete documentation index at: https://tbd-6fc993ce-pools-fill-rate-1772767851.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
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:
Typescript/Javascript
Python
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 ,
});
Configuration Parameters
bypass_hosts (optional) - Array of hostnames that bypass the proxy and connect directly (max 100 entries)
Bypass hosts
Configure specific hostnames to bypass the proxy:
Typescript/Javascript
Python
import Kernel from '@onkernel/sdk' ;
const kernel = new Kernel ();
const proxy = await kernel . proxies . create ({
type: 'isp' ,
name: 'isp-with-bypass' ,
bypass_hosts: [
'localhost' ,
'internal.service.local' ,
'*.amazonaws.com' ,
],
});
See the overview for full bypass host rules and examples.