Skip to main content
POST
/
v1
/
initialize
Initialize
curl --request POST \
  --url https://api.example.com/v1/initialize/
{
  "function": "rustmani-agent",
  "status": "initialized",
  "version": "0.1.0"
}

Documentation Index

Fetch the complete documentation index at: https://docs.rustybrowser.com/llms.txt

Use this file to discover all available pages before exploring further.

Description

Initializes the Rusty Browser agent. Call this once before creating any browser sessions to ensure the service is ready. Returns the agent version and status.

Authentication

No authentication required.

Request Body

No request body required.

Response

function
string
Name of the agent function.
status
string
Initialization status. initialized on success.
version
string
Version string of the running agent.

Example

curl -X POST https://your-host/initialize/
{
  "function": "rustmani-agent",
  "status": "initialized",
  "version": "0.1.0"
}