v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Proxies

List proxies

List proxies in the resolved project.

get/proxies

Query parameters

limitinteger

Limit the number of proxies to return.

offsetinteger

Offset the number of proxies to return.

querystring

Case-insensitive substring match against proxy name, host, or IP address. IDs match by exact value.

namestring

Exact-match filter on proxy name using the database collation. In production, matching is case- and accent-insensitive. Names are not required to be unique, so multiple proxies may match.

Response

List of proxies

idstring
namestring

Readable name 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.

protocol'http' | 'https'

Protocol to use for the proxy connection.

bypass_hostsstring[]

Hostnames that should bypass the parent proxy and connect directly.

status'available' | 'unavailable'

Current health status of the proxy.

last_checkedstring date-time

Timestamp of the last health check performed on this proxy.

ip_addressstring

IP address that the proxy uses when making requests.

Example response

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