cURL
curl --request GET \ --url https://api.bctrl.ai/v1/storage/objects/by-path/browse \ --header 'Authorization: Bearer <token>'
Browse files and folders by logical prefix
const result = await storage.browse({ prefix: 'screenshots/' }); for (const file of result.files) { console.log(file.key, file.size); }