Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Create an ephemeral sandbox execution environment. Claims a warm sandbox pod or creates a new one. When project_id is provided, the project owner is billed.

Tool details

FieldValue
Namecreate_sandbox_session
GroupSandbox

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_id": {
      "type": "string",
      "format": "uuid",
      "description": "Optional project ID , when set, the project owner is billed"
    }
  },
  "additionalProperties": false,
  "description": "Input schema for the create_sandbox_session tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "short_id": {
      "type": "string",
      "description": "The short id associated with this tool result."
    },
    "endpoint": {
      "type": "string",
      "description": "The endpoint associated with this tool result."
    },
    "status": {
      "type": "string",
      "description": "Lifecycle status for the returned record."
    },
    "created_at": {
      "type": "string",
      "description": "Creation timestamp in ISO 8601 format."
    }
  },
  "required": [
    "id",
    "short_id",
    "endpoint",
    "status",
    "created_at"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the create_sandbox_session tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}