JavaScript
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}}; fetch('https://api.browser-use.com/api/v2/skills/{skill_id}/executions', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "items": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "skillId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "status": "<string>", "success": true, "startedAt": "2023-11-07T05:31:56Z", "finishedAt": "2023-11-07T05:31:56Z", "latencyMs": 123, "hasOutput": true } ], "totalItems": 123, "pageNumber": 123, "pageSize": 123 }
List executions for a specific skill.
1 <= x <= 100
x >= 1
Successful Response
Response for listing skill executions.
List of executions
Show child attributes
Total number of items in the list
Page number
Number of items per page
Was this page helpful?