Download raw file bytes
GET
/v1/sessions/{session_id}/fs/_/download/{path}
const url = 'https://app.everruns.com/api/v1/sessions/example/fs/_/download/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/sessions/example/fs/_/download/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” session_id
required
string
Session ID (prefixed, e.g., sess_…)
path
required
string
File path
Responses
Section titled “ Responses ”Raw file bytes
Media type application/octet-stream
Invalid session ID or path points to a directory
File not found
Internal server error