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

# Liveness

> Not enveloped. What the container healthcheck probes.



## OpenAPI

````yaml /api-reference/logs.json get /healthz
openapi: 3.1.0
info:
  title: Truscan Logs
  version: 1.0.0
  description: >-
    Request history. The edge records every authenticated API call and this
    service serves it back to the account that made it. Bodies are never stored
    — only method, path, status, duration and source. Every response uses the
    {success, result, message} envelope except where noted.
servers:
  - url: https://api.truscan.co
    description: Production
security: []
tags:
  - name: logs
    description: Request history
paths:
  /healthz:
    get:
      tags:
        - logs
      summary: Liveness
      description: Not enveloped. What the container healthcheck probes.
      responses:
        '200':
          description: Alive.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Health'
components:
  schemas:
    Health:
      type: object
      properties:
        status:
          type: string
        service:
          type: string
        time:
          type: string
          format: date-time

````