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

# Handle Batch Cvm Status

> Batch query CVM real-time status.

Groups by teepod and queries in parallel, returns status updates with
complete async operation information.



## OpenAPI

````yaml /openapi.json post /api/v1/status/batch
openapi: 3.1.0
info:
  title: Phala Cloud API
  version: 0.1.0
servers:
  - url: https://cloud-api.phala.com
security: []
tags:
  - name: CVMs
    description: Confidential Virtual Machine (CVM) lifecycle management on Phala Network
  - name: Apps
    description: App template management and CVM deployment from app blueprints
  - name: Webhooks
    description: Manage webhook endpoints and monitor delivery history
  - name: SSH Keys
    description: SSH public key management for CVM access
  - name: KMS
    description: >-
      Key Management Service — key derivation, on-chain anchoring, and
      inspection
  - name: Instance Types
    description: Available hardware configurations for CVM deployment
  - name: Attestations
    description: Remote attestation and TEE verification endpoints
paths:
  /api/v1/status/batch:
    post:
      tags:
        - CVMs
      summary: Handle Batch Cvm Status
      description: |-
        Batch query CVM real-time status.

        Groups by teepod and queries in parallel, returns status updates with
        complete async operation information.
      operationId: handle_batch_cvm_status_api_v1_status_batch_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchStatusRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  $ref: '#/components/schemas/CvmStatus'
                type: object
                title: Response Handle Batch Cvm Status Api V1 Status Batch Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2AuthorizationCodeBearer: []
        - APIKeyHeader: []
components:
  schemas:
    BatchStatusRequest:
      properties:
        vm_uuids:
          items:
            type: string
          type: array
          title: Vm Uuids
      type: object
      required:
        - vm_uuids
      title: BatchStatusRequest
    CvmStatus:
      properties:
        vm_uuid:
          type: string
          title: Vm Uuid
        status:
          type: string
          title: Status
        uptime:
          anyOf:
            - type: string
            - type: 'null'
          title: Uptime
        in_progress:
          type: boolean
          title: In Progress
          default: false
        boot_progress:
          anyOf:
            - type: string
            - type: 'null'
          title: Boot Progress
        boot_error:
          anyOf:
            - type: string
            - type: 'null'
          title: Boot Error
        shutdown_progress:
          anyOf:
            - type: string
            - type: 'null'
          title: Shutdown Progress
        events:
          items:
            $ref: '#/components/schemas/GuestEvent'
          type: array
          title: Events
        operation_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Operation Type
        operation_started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Operation Started At
        correlation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Correlation Id
      type: object
      required:
        - vm_uuid
        - status
      title: CvmStatus
      description: >-
        CVM status information for API response.


        This schema is used for both internal status determination and API
        responses.

        Contains current state, progress information, and async operation
        tracking.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    GuestEvent:
      properties:
        event:
          type: string
          title: Event
        body:
          type: string
          title: Body
        timestamp:
          type: integer
          title: Timestamp
          default: 0
      type: object
      required:
        - event
        - body
      title: GuestEvent
      description: >-
        Structured lifecycle event emitted by the guest or runtime. Since VMM
        v0.5.7.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2AuthorizationCodeBearer:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: ''
          tokenUrl: token
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````