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

# Diagnostic Test

Simple diagnostic endpoint to verify API connectivity and latency.


## OpenAPI

````yaml GET /api/v1/test
openapi: 3.1.0
info:
  title: WaveCentric AI LooP API
  description: >-
    Comprehensive API for managing omnichannel logistics, inquiries, tasks, and
    data lake operations.
  version: 1.0.0
servers:
  - url: https://ai-loop.alpeadria.com
    description: Production server
security: []
paths:
  /api/v1/test:
    get:
      tags:
        - System
      summary: Diagnostic test
      operationId: get-test
      responses:
        '200':
          description: Test data
          content:
            application/json:
              example:
                timestamp: 123456789
                id: abc12345

````