latestOpenAPI 3.1.02026-08-22154287463.4 KB

858365328f92

Proxies

Create a proxy

Create a new proxy configuration in the resolved project.

post/proxies

Request body

bypass_hostsstring[]

Hostnames that should bypass the parent proxy and connect directly.

namestring

Readable name of the proxy.

protocol'http' | 'https'

Protocol to use for the proxy connection.

type'datacenter' | 'isp' | 'residential' | 'mobile' | 'custom' required

Proxy type to use. In terms of quality for avoiding bot-detection, from best to worst: mobile > residential > isp > datacenter.

Example request

{
  "config": {
    "country": "US"
  }
}

Response

Proxy created successfully

bypass_hostsstring[]

Hostnames that should bypass the parent proxy and connect directly.

idstring
ip_addressstring

IP address that the proxy uses when making requests.

last_checkedstring date-time

Timestamp of the last health check performed on this proxy.

namestring

Readable name of the proxy.

protocol'http' | 'https'

Protocol to use for the proxy connection.

status'available' | 'unavailable'

Current health status of the proxy.

type'datacenter' | 'isp' | 'residential' | 'mobile' | 'custom' required

Proxy type to use. In terms of quality for avoiding bot-detection, from best to worst: mobile > residential > isp > datacenter.

Example response

{
  "config": {
    "country": "US"
  },
  "ip_address": "192.168.1.1"
}