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

# Get agent status

> Returns agent status from DB and live container inspection. Scoped to ownership.



## OpenAPI

````yaml /openapi.yaml get /agents/{id}/status
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /agents/{id}/status:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      summary: Get agent status
      description: >-
        Returns agent status from DB and live container inspection. Scoped to
        ownership.
      responses:
        '200':
          description: Agent status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentStatus'
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
        '404':
          description: Agent not found
      security:
        - bearerAuth: []
components:
  schemas:
    AgentStatus:
      type: object
      properties:
        db_status:
          type: string
        container:
          type: object
          nullable: true
        error_message:
          type: string
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````