Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Sandbox.list()
import { Sandbox } from 'novita-sandbox' // Start a sandbox and attach custom metadata. const sbx = await Sandbox.create({ metadata: { userId: '123', }, }) // Retrieve active sandboxes and inspect their metadata. const page = await Sandbox.list() const active = await page.nextItems() console.log(active[0].metadata) // Example output: // { userId: '123' }
Was this page helpful?