Delete Skill
const options = {method: 'DELETE', headers: {'X-Browser-Use-API-Key': '<api-key>'}};
fetch('https://api.browser-use.com/api/v2/skills/{skill_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://api.browser-use.com/api/v2/skills/{skill_id} \
--header 'X-Browser-Use-API-Key: <api-key>'import requests
url = "https://api.browser-use.com/api/v2/skills/{skill_id}"
headers = {"X-Browser-Use-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"detail": "Cannot delete skill while it is still generating"
}{
"detail": "Skill not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Skills
Delete Skill
Delete a skill owned by the project.
DELETE
/
skills
/
{skill_id}
Delete Skill
const options = {method: 'DELETE', headers: {'X-Browser-Use-API-Key': '<api-key>'}};
fetch('https://api.browser-use.com/api/v2/skills/{skill_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://api.browser-use.com/api/v2/skills/{skill_id} \
--header 'X-Browser-Use-API-Key: <api-key>'import requests
url = "https://api.browser-use.com/api/v2/skills/{skill_id}"
headers = {"X-Browser-Use-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"detail": "Cannot delete skill while it is still generating"
}{
"detail": "Skill not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
⌘I