List commands
GET
https://api.vercel.com/v2/sandboxes/sessions/{sessionId}/cmdRetrieves a list of all commands that have been executed in a session, including their current status, exit codes, and execution times, ordered from the most recent to the oldest.
https://api.vercel.com/v2/sandboxes/sessions/{sessionId}/cmd
const response = await fetch('https://api.vercel.com/v2/sandboxes/sessions/sessionId/cmd?teamId=string&slug=string', { method: 'GET', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);Response
{ "commands": [ { "id": "cmd_123a6c5209bc3778245d011443644c8d27dc2c50", "name": "npm", "args": [], "cwd": "/vercel/sandbox", "sessionId": "sbx_123a6c5209bc3778245d011443644c8d27dc2c50", "exitCode": "0", "startedAt": "1673123456789", "durationMs": "1234" } ]}AuthorizationbearerToken
Default authentication mechanism