cURL
curl --request GET \ --url https://api.bctrl.ai/v1/storage/objects/by-path/get/{path} \ --header 'Authorization: Bearer <token>'
Download a file by logical path as raw bytes
const data = await storage.get('reports/q1.pdf'); fs.writeFileSync('local-copy.pdf', data);