> ## 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.

# Initialize

> Initialize the Rusty Browser agent

## Description

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

## Authentication

*No authentication required.*

## Request Body

*No request body required.*

## Response

<ResponseField name="function" type="string">
  Name of the agent function.
</ResponseField>

<ResponseField name="status" type="string">
  Initialization status. `initialized` on success.
</ResponseField>

<ResponseField name="version" type="string">
  Version string of the running agent.
</ResponseField>

## Example

```bash theme={null}
curl -X POST http://localhost:8080/initialize/
```

<ResponseExample>
  ```json 200 theme={null}
  {
    "function": "rustmani-agent",
    "status": "initialized",
    "version": "0.1.0"
  }
  ```
</ResponseExample>
