Skip to main content
Proxy records help you route browser sessions or MCP calls through customer-managed networks.

List proxies

GET /:project/api/proxies

  • Querysource=db forces the API to return only proxies stored in the database. Without the query parameter, Browsary asks the configured ProxyProvider for dynamic proxies tied to the user and project.
  • Response – array of proxy descriptors { id?, name?, hostname, port, protocol, username?, password?, metadata }.

Create

POST /:project/api/proxies

  • Auth – requires proxies.write on the project.
  • Body
  • Validation – hostname/protocol must be non-empty strings; port must be a positive integer. Optional fields are checked for type consistency.
  • Response – the created proxy row as stored in the database.

Get / patch / delete

Combine these endpoints with session creation (PUT /:project/api/sessions) to enforce proxy usage for specific browser runs.