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

# Show campaign analytics

> Returns aggregate analytics for the specified campaign.



## OpenAPI

````yaml /api-reference/voxys_campaigns_swagger.json get /api/v1/accounts/{account_id}/campaigns/{id}/campaign_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: Campaigns Extended
    description: Campaign triggering, analytics, scheduling, audiences, and contact lists
  - name: Scheduled Messages
    description: Schedule messages for future delivery
  - name: Outbound Reports
    description: Analytics for outbound campaign and template messages (v2)
paths:
  /api/v1/accounts/{account_id}/campaigns/{id}/campaign_analytics:
    get:
      tags:
        - Campaigns Extended
      summary: Show campaign analytics
      description: Returns aggregate analytics for the specified campaign.
      operationId: getCampaignAnalytics
      responses:
        '200':
          description: Campaign analytics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/campaign_analytics'
        '401':
          $ref: '#/components/responses/unauthorized'
        '404':
          $ref: '#/components/responses/not_found'
components:
  schemas:
    campaign_analytics:
      type: object
      properties:
        id:
          type: integer
        campaign_id:
          type: integer
        total_sent:
          type: integer
        total_delivered:
          type: integer
        total_read:
          type: integer
        total_failed:
          type: integer
        delivery_rate:
          type: number
          format: float
        read_rate:
          type: number
          format: float
        executions:
          type: array
          items:
            type: object
            properties:
              execution_id:
                type: integer
              status:
                type: string
              started_at:
                type: string
                format: date-time
              completed_at:
                type: string
                format: date-time
  responses:
    unauthorized:
      description: Authentication failed – invalid or missing api_access_token
    not_found:
      description: Resource not found
  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.

````