Skip to main content
GET
/
skills
/
{skill_id}
/
executions
/
{execution_id}
/
output
Get Skill Execution Output
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}};

fetch('https://api.browser-use.com/api/v2/skills/{skill_id}/executions/{execution_id}/output', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "downloadUrl": "<string>"
}

Authorizations

X-Browser-Use-API-Key
string
header
required

Path Parameters

skill_id
string<uuid>
required
execution_id
string<uuid>
required

Response

Successful Response

Response containing presigned URL for downloading execution output.

downloadUrl
string
required

Presigned URL for downloading the execution output (valid for 5 minutes)