Get Browser Recording
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}};
fetch('https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording \
--header 'X-Browser-Use-API-Key: <api-key>'import requests
url = "https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording"
headers = {"X-Browser-Use-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"url": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Browsers
Get Browser Recording
Presigned, expiring mp4 URL for the browser’s recording (if one exists).
GET
/
browsers
/
{browser_id}
/
recording
Get Browser Recording
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}};
fetch('https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording \
--header 'X-Browser-Use-API-Key: <api-key>'import requests
url = "https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1/browsers/{browser_id}/recording"
headers = {"X-Browser-Use-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"url": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?