> ## 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. 200 for the whole process lifetime, including while draining. Not enveloped.



## OpenAPI

````yaml /api-reference/search.json get /healthz
openapi: 3.1.0
info:
  title: truscan search
  version: 1.0.0
  description: >-
    A web search API. One query is fanned out across many independent sources,
    then deduplicated, extracted, ranked, and returned with a score it will
    explain. Every response uses the {success, result, message} envelope except
    where noted.
servers:
  - url: https://api.truscan.co
    description: Production
security: []
paths:
  /healthz:
    get:
      summary: >-
        Liveness. 200 for the whole process lifetime, including while draining.
        Not enveloped.
      responses:
        '200':
          description: Alive
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Health'
components:
  schemas:
    Health:
      type: object
      properties:
        service:
          type: string
        status:
          type: string
        time:
          type: string
          format: date-time

````