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

# Lab results agent webhook

> Sent to your webhook URL when Lab Results Agent analysis is complete (success or error).

**Processing Steps:**
The Lab Results Agent sends status updates during processing:
1. Processing started
2. Analyzing lab results
3. Prioritizing findings
4. Generating search queries
5. Searching medical literature and clinical guidelines
6. Processing search results
7. Generating responses
8. Final webhook delivered (this webhook)

Webhook security is identical to the EHR Agent - see the `analysisComplete` webhook for signature verification details.



## OpenAPI

````yaml /openapi/v1.json webhook labResultsComplete
openapi: 3.1.0
info:
  title: Helios AI Health Agents API
  version: 1.0.0
  description: >-
    HIPAA-compliant AI health analysis API. Analyze patient health data and
    receive comprehensive insights via webhook.
  contact:
    name: Helios Intelligence
    url: https://heliosai.health
    email: support@heliosinc.xyz
  license:
    name: Proprietary
servers:
  - url: https://api.heliosai.health
    description: Production
security:
  - ApiKeyAuth: []
paths: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key provided by Helios Intelligence

````