Skip to main content
POST
/
v1
/
browsers
/
{id}
/
screenshot
Screenshot
curl --request POST \
  --url https://api.example.com/v1/browsers/{id}/screenshot/
{
  "success": true,
  "data": {}
}

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

Captures a screenshot of the browser’s current viewport and returns it.

Authentication

Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required
UUID of the browser.

Request Body

No request body required.

Response

success
boolean
Whether the screenshot was captured successfully.
data
object
Screenshot data. Structure to be documented.

Example

curl -X POST https://api.rustybrowser.com/v1/browsers/550e8400-e29b-41d4-a716-446655440000/screenshot/ \
  -H "Authorization: Bearer YOUR_API_KEY"