Download raw file bytes
GET
/v1/workspaces/{workspace_id}/fs/_/download/{path}
const url = 'https://app.everruns.com/api/v1/workspaces/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/workspaces/example/fs/_/download/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” workspace_id
required
string
Workspace ID (wsp_<32-hex>)
path
required
string
File path. Wildcard route: nested paths are literal /-separated segments, not a single URL-encoded value.
Responses
Section titled “ Responses ”Raw file bytes
Media type application/octet-stream
Path points to a directory
File not found
Internal server error