> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentarea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sandboxes

> Return live provider state for the authenticated workspace only.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sandboxes
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/sandboxes:
    get:
      tags:
        - v1
        - protected
        - sandboxes
      summary: List Sandboxes
      description: Return live provider state for the authenticated workspace only.
      operationId: list_sandboxes_v1_sandboxes_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SandboxListResponse'
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    SandboxListResponse:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/SandboxSummary'
          title: Items
          type: array
        total:
          title: Total
          type: integer
      required:
        - items
        - total
      title: SandboxListResponse
      type: object
    SandboxSummary:
      additionalProperties: false
      properties:
        created_at:
          format: date-time
          title: Created At
          type: string
        expires_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Expires At
        id:
          title: Id
          type: string
        isolation:
          title: Isolation
          type: string
        provider:
          title: Provider
          type: string
        resources:
          $ref: '#/components/schemas/SandboxResources'
        state:
          title: State
          type: string
        task_id:
          title: Task Id
          type: string
      required:
        - id
        - provider
        - task_id
        - state
        - created_at
        - expires_at
        - resources
        - isolation
      title: SandboxSummary
      type: object
    SandboxResources:
      additionalProperties: false
      properties:
        cpu:
          title: Cpu
          type: string
        memory:
          title: Memory
          type: string
      required:
        - cpu
        - memory
      title: SandboxResources
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````