API For Proxy Connect Config

List connection configs

get

Returns a paginated list of proxy connection configurations for the authenticated account, with support for sorting and ordering.

Authorizations
api-keystringRequired
Query parameters
limitintegerOptional

Maximum number of items to return per page.

pageintegerOptional

Requested page number (1-based). Default: 1

sort_bystringOptional

Field to sort by: 'id', 'start_port', 'end_port', 'created_at', 'updated_at'. Default: start_port

order_bystringOptional

Sort order: desc or asc. Default: desc

Responses
chevron-right
200

Successful response

application/json

Connection configurations list response payload.

successbooleanOptional

Indicates whether the request was successful.

messagestringOptional

Human-readable response message.

get
/client/v1/proxy-connection/get-list

Create connection config

post

Creates a new proxy connection configuration by allocating a port range based on the requested quantity and applying optional targeting filters and session settings.

Authorizations
api-keystringRequired
Body
proxy_typeintegerOptional

Proxy type identifier.

Example: 1
country_codestringOptional

Country code used to target proxies.

Example: US
city_codestringOptional

City code used to target proxies.

Example: villa_rica
state_codestringOptional

State/region code used to target proxies.

Example: california
isp_codestringOptional

ISP code used to target proxies.

Example: isp_code
quantityintegerRequired

Number of ports to allocate for this configuration.

Example: 10
session_typeintegerRequired

Session mode. 1: Rotation, 2: Sticky

Example: 2
session_timeintegerOptional

Sticky session duration (minutes).

Example: 33
Responses
chevron-right
200

Successful response

application/json

Connection configuration creation response payload.

successbooleanOptional

Indicates whether the request was successful.

messagestringOptional

Human-readable response message.

post
/client/v1/proxy-connection/create

Update connection config

put

Updates an existing proxy connection configuration identified by start_port, including targeting filters and session settings.

Authorizations
api-keystringRequired
Body
start_portintegerRequired

Start port of the configuration to update.

Example: 7000
country_codestringOptional

Country code used to target proxies.

Example: US
city_codestringOptional

City code used to target proxies.

Example: villa_rica
state_codestringOptional

State/region code used to target proxies.

Example: california
isp_codestringOptional

ISP code used to target proxies.

Example: isp_code
session_typeintegerRequired

Session mode. 1: Rotation, 2: Sticky

Example: 2
session_timeintegerOptional

Sticky session duration (minutes).

Example: 33
Responses
chevron-right
200

Successful response

application/json

Connection configuration update response payload.

successbooleanOptional

Indicates whether the request was successful.

messagestringOptional

Human-readable response message.

put
/client/v1/proxy-connection/update

Delete connection configs

delete

Deletes one or more proxy connection configurations identified by their start_port values.

Authorizations
api-keystringRequired
Body
start_portsinteger[]Required

List of start_port values to delete.

Example: [7000,7001,7005]
Responses
chevron-right
200

Successful response

application/json

Connection configuration deletion response payload.

successbooleanOptional

Indicates whether the request was successful.

messagestringOptional

Human-readable response message.

delete
/client/v1/proxy-connection/delete

Last updated

Was this helpful?