import BrainbaseLabs from 'brainbase-labs';const client = new BrainbaseLabs({ apiKey: process.env['BRAINBASE_LABS_API_KEY'], // This is the default and can be omitted});const exports = await client.team.exports.list();console.log(exports.data);
Returns the 20 most recent log exports for the authenticated team.
GET
/
api
/
team
/
exports
JavaScript
import BrainbaseLabs from 'brainbase-labs';const client = new BrainbaseLabs({ apiKey: process.env['BRAINBASE_LABS_API_KEY'], // This is the default and can be omitted});const exports = await client.team.exports.list();console.log(exports.data);