> ## Documentation Index
> Fetch the complete documentation index at: https://thebettercontextapp-davis-web-resource.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Sandbox status

Returns sandbox state, plan, version, and current project info.


## OpenAPI

````yaml GET /api/cli/status
openapi: 3.1.0
info:
  title: btca Cloud API
  version: 2.0.0
  description: Remote API used by btca remote and MCP tools.
servers:
  - url: https://btca.dev
security:
  - bearerAuth: []
paths:
  /api/cli/status:
    get:
      summary: Get current sandbox status
      parameters:
        - name: project
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Sandbox status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CliStatusResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudError'
components:
  schemas:
    CliStatusResponse:
      type: object
      required:
        - instance
      properties:
        instance:
          $ref: '#/components/schemas/GenericObject'
        project:
          $ref: '#/components/schemas/GenericObject'
    CloudError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
        message:
          type: string
    GenericObject:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````