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>"
}
'
{
  "success": true
}

Description

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

Authentication

Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required
UUID of the browser.

Request Body

url
string
required
The URL to navigate to.

Response

success
boolean
Whether the navigation completed successfully.

Example

curl -X POST https://api.rustybrowser.com/v1/browsers/550e8400-e29b-41d4-a716-446655440000/navigate/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com" }'