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

# Get Worker Status

> The cheap endpoint to poll while a deploy or a power action settles. Returns live state without the full worker object.



## OpenAPI

````yaml GET /workers/{worker}/status
openapi: 3.0.3
info:
  title: CloudBlast API
  description: >-
    The CloudBlast V2 API provides a modern RESTful interface for managing your
    cloud infrastructure programmatically. All responses follow a consistent `{
    "data": ... }` or `{ "error": ... }` format.
  version: 2.0.0
servers:
  - url: https://console.cloudblast.io/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /workers/{worker}/status:
    get:
      tags:
        - Workers
      summary: Get worker status
      description: >-
        The cheap endpoint to poll while a deploy or a power action settles.
        Returns live state without the full worker object.
      operationId: getWorkerStatus
      parameters:
        - $ref: '#/components/parameters/WorkerIdentifier'
      responses:
        '200':
          description: Current worker state
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/WorkerStatus'
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    WorkerIdentifier:
      name: worker
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: Worker UUID, as returned in the `uuid` field.
      example: 7c9e6679-7425-40de-944b-e07fc1f90ae7
  schemas:
    WorkerStatus:
      type: object
      properties:
        status:
          type: string
          enum:
            - pending
            - provisioning
            - active
            - suspended
            - abuse_suspended
            - cancelled
            - deleting
            - failed
          example: active
        runtime_status:
          type: string
          nullable: true
          description: Container state, such as `running`, `starting` or `exited`.
          example: running
        last_deployment_status:
          type: string
          nullable: true
          description: Status of the most recent build.
          example: finished
        last_deployment_at:
          type: string
          format: date-time
          nullable: true
        fqdn:
          type: string
          nullable: true
          description: Hostname the worker is served on.
        last_error:
          type: string
          nullable: true
          description: Why the last action failed. `null` when the worker is healthy.
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Machine-readable error code
            message:
              type: string
              description: Human-readable error message
          required:
            - code
            - message
  responses:
    Unauthenticated:
      description: Authentication failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: UNAUTHENTICATED
              message: >-
                Missing or invalid Authorization header. Use: Authorization:
                Bearer <token>
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: NOT_FOUND
              message: Server not found.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token from your CloudBlast account settings. Pass as `Authorization:
        Bearer <token>`.

````