Skip to main content
GET
/
v1
/
browsers
/
{id}
/
logs
Fetch Logs
curl --request GET \
  --url https://api.example.com/v1/browsers/{id}/logs/
{
  "error": {
    "code": "INTERNAL_ERROR",
    "message": "Flux logs: HTTP error (404): execution not found"
  }
}

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

Returns the log output for a browser session. Useful for debugging failed instructions or tracing browser activity.

Authentication

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

Path Parameters

id
string
required
The browser ID to fetch logs for.

Response

logs
array
Array of log entries for the session.

Example

curl https://your-host/browsers/exc-3328818e-3ef8-4579-856e-bbb22a7df67b/logs/
{
  "error": {
    "code": "INTERNAL_ERROR",
    "message": "Flux logs: HTTP error (404): execution not found"
  }
}