Resources
Playgrounds
SDK methods for the Playgrounds resource.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SDK methods for the Playgrounds resource.
verial.playgrounds.list({ cursor?, limit? })
verial.playgrounds.create({ environmentId })
verial.playgrounds.get({ id })
verial.playgrounds.teardown({ id })
const pg = await verial.playgrounds.create({ environmentId: 'env_01H...' })
const details = await verial.playgrounds.get({ id: pg.id })
console.log(details.status)
await verial.playgrounds.teardown({ id: pg.id })