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

# Template analytics

> Returns aggregate performance analytics across all WhatsApp templates.



## OpenAPI

````yaml /api-reference/voxys_whatsapp_swagger.json get /api/v1/accounts/{account_id}/whatsapp_templates/analytics
openapi: 3.1.0
info:
  title: Voxys Connect – Extended Features
  description: >-
    API documentation for Voxys Connect extended features: Campaigns, WhatsApp
    Templates & Flows, Appointments, Scheduled Messages, Projects, Internal
    Channels, Customer Pulse, and Reports.
  version: 1.0.0
  contact:
    email: support@voxys.ai
  license:
    name: MIT License
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://connect.voxys.ai
security:
  - userApiKey: []
tags:
  - name: WhatsApp Templates
    description: Create, manage, and submit WhatsApp message templates to Meta
  - name: WhatsApp Flows
    description: Build and publish interactive WhatsApp Flows
paths:
  /api/v1/accounts/{account_id}/whatsapp_templates/analytics:
    get:
      tags:
        - WhatsApp Templates
      summary: Template analytics
      description: Returns aggregate performance analytics across all WhatsApp templates.
      operationId: getWhatsappTemplateAnalytics
      parameters:
        - name: whatsapp_channel_id
          in: query
          schema:
            type: integer
        - name: since
          in: query
          schema:
            type: integer
          description: Start timestamp (Unix epoch)
        - name: until
          in: query
          schema:
            type: integer
          description: End timestamp (Unix epoch)
      responses:
        '200':
          description: Template analytics data
        '401':
          $ref: '#/components/responses/unauthorized'
components:
  responses:
    unauthorized:
      description: Authentication failed – invalid or missing api_access_token
  securitySchemes:
    userApiKey:
      type: apiKey
      in: header
      name: api_access_token
      description: >-
        All API requests must include the `api_access_token` header with a valid
        agent or administrator token.

````