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

# Get individual email campaign reports



## OpenAPI

````yaml /openapi.json get /api/reports/email/{id}
openapi: 3.0.0
info:
  description: >-
    Public REST API for Benchmark Email.


    Authenticate every request by including your API key in the `X-API-Key`
    header.

    Each key is issued with one or more scopes that control which endpoints it
    may call.


    Rate limits: 60 requests per minute per account.

    Monthly quota: determined by your subscription plan.
  title: Benchmark Email API
  version: 1.0.0
servers:
  - description: >-
      Your account's API base URL. Copy the full URL shown on Settings > API
      Keys in your Benchmark Email account and paste it here.
    url: '{apiBaseUrl}'
    variables:
      apiBaseUrl:
        default: ''
        description: >-
          Your account's API base URL. Copy it from Settings > API Keys in your
          Benchmark Email account.
security:
  - apiKeyAuth: []
tags:
  - description: Contact related endpoints
    name: contact
  - description: Contact structure related endpoints
    name: contact-structure
  - description: List related endpoints
    name: lists
  - description: Email domain related endpoints
    name: email-domain
  - description: Email campaign related endpoints
    name: email-campaign
  - description: Email template related endpoints
    name: email-template
  - description: Report related endpoints
    name: reports
paths:
  /api/reports/email/{id}:
    get:
      tags:
        - reports
      summary: Get individual email campaign reports
      operationId: get_api_reports_email_by_id
      parameters:
        - description: email campaign identifier
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  linkActivity:
                    description: List of link activity
                    items:
                      properties:
                        clicks:
                          properties:
                            total:
                              example: 0
                              type: integer
                            unique:
                              example: 0
                              type: integer
                          type: object
                        id:
                          example: 66f1a6e4698f1bca60424808
                          type: string
                        path:
                          example: https://instagram.com/
                          type: string
                      type: object
                    type: array
                  stats:
                    description: Statistics of the campaign
                    properties:
                      clicks:
                        description: Email clicks statistics
                        properties:
                          last:
                            example: '2024-09-27T18:28:40.575Z'
                            format: date-time
                            type: string
                          rate:
                            example: 25.8
                            format: float
                            type: number
                          unique:
                            example: 169
                            type: integer
                        type: object
                      complaints:
                        description: Number of complaints
                        example: 0
                        type: integer
                      delivered:
                        description: Total number of delivered emails
                        example: 655
                        type: integer
                      hardBounces:
                        description: Hard bounce emails statistics
                        properties:
                          count:
                            example: 25
                            type: integer
                          rate:
                            example: 3.81
                            format: float
                            type: number
                        type: object
                      opens:
                        description: Email opens statistics
                        properties:
                          last:
                            example: '2024-09-27T17:33:45.464Z'
                            format: date-time
                            type: string
                          rate:
                            example: 32.06
                            format: float
                            type: number
                          unique:
                            example: 210
                            type: integer
                        type: object
                      sent:
                        description: Total number of sent emails
                        example: 697
                        type: integer
                      softBounces:
                        description: Soft bounce emails statistics
                        properties:
                          count:
                            example: 17
                            type: integer
                          rate:
                            example: 2.59
                            format: float
                            type: number
                        type: object
                      totalBounces:
                        description: Total bounce emails statistics
                        properties:
                          count:
                            example: 42
                            type: integer
                          rate:
                            example: 6.87
                            format: float
                            type: number
                        type: object
                      unsubscribes:
                        description: Number of unsubscribes
                        example: 0
                        type: integer
                    type: object
                type: object
          description: Successfully retrieved report
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      description: API key authentication
      in: header
      name: X-API-Key
      type: apiKey

````