Skip to main content
POST
/
v1
/
browsers
/
{id}
/
navigate
Navigate
curl --request POST \
  --url https://api.example.com/v1/browsers/{id}/navigate/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "ok": true
}

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

Navigates the browser to the specified URL. Waits for the page to load before returning.

Authentication

Authorization: Bearer YOUR_API_KEY
Self-hosted open source deployments do not require authentication.

Path Parameters

id
string
required
The browser ID returned from Create Session.

Request Body

url
string
required
The URL to navigate to.

Response

ok
boolean
Whether the navigation completed successfully.

Example

curl -X POST https://api.rustybrowser.com/v1/browsers/exc-b9534e98-c3ce-4d1b-9671-b563ac66adc3/navigate/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com" }'
{
  "ok": true
}