> ## 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.

# Widget Data

> Fetch real-time data (weather, time, metrics) for specific dashboard widgets.

Fetch synchronized data for dashboard widgets, including weather, time, and metrics.


## OpenAPI

````yaml POST /api/v1/widget-data
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/widget-data:
    post:
      tags:
        - Dashboards
      summary: Get widget data
      description: >-
        Fetch real-time data (weather, time, metrics) for specific dashboard
        widgets.
      operationId: post-widget-data
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                widget:
                  type: string
                  description: Filter by specific widget name
      responses:
        '200':
          description: Widget data package
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
              examples:
                success:
                  value:
                    Weather:
                      temp: 12
                      condition: Cloudy
                    LocalTime: '2026-02-04T09:20:00Z'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````