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

# Get email campaign metrics

> Aggregated delivery + engagement counters and rates, computed from recipient statuses and SendGrid webhook events.



## OpenAPI

````yaml /openapi.json get /api/public/email-campaign/metrics/{id}
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/public/email-campaign/metrics/{id}:
    get:
      tags:
        - email-channel
      summary: Get email campaign metrics
      description: >-
        Aggregated delivery + engagement counters and rates, computed from
        recipient statuses and SendGrid webhook events.
      operationId: PublicEmailCampaignController_getMetrics
      parameters:
        - name: x-api-key
          in: header
          description: API key needed to authorize the request
          required: true
          schema:
            type: string
        - name: id
          required: true
          in: path
          schema:
            format: uuid
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCampaignMetricsResponseDto'
components:
  schemas:
    EmailCampaignMetricsResponseDto:
      type: object
      properties:
        total_recipients:
          type: number
        sent:
          type: number
        failed:
          type: number
        pending:
          type: number
        delivered:
          type: number
        opened:
          type: number
        clicked:
          type: number
        bounced:
          type: number
        dropped:
          type: number
        open_rate:
          type: number
          description: opened / delivered (0..1)
        click_rate:
          type: number
          description: clicked / delivered (0..1)
        bounce_rate:
          type: number
          description: bounced / (delivered + bounced) (0..1)
      required:
        - total_recipients
        - sent
        - failed
        - pending
        - delivered
        - opened
        - clicked
        - bounced
        - dropped
        - open_rate
        - click_rate
        - bounce_rate

````