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

# Sequence email analytics (date range)

> Returns per-day and aggregate email sending and engagement metrics for a multichannel sequence. Query dates are interpreted in `timezone` when provided (IANA name), otherwise UTC. Open and click metrics are zeroed when the sequence has those tracking modes disabled.



## OpenAPI

````yaml https://multichannel-api.salesforge.ai/public/multichannel/swagger/doc.json get /multichannel/workspaces/{workspaceID}/sequences/{sequenceID}/analytics
openapi: 3.1.0
info:
  description: Multichannel public endpoints consumed through salesforge-api public docs.
  title: Multichannel Public API
  version: '1.0'
servers:
  - url: https://multichannel-api.salesforge.ai/public
security:
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
externalDocs:
  description: ''
  url: ''
paths:
  /multichannel/workspaces/{workspaceID}/sequences/{sequenceID}/analytics:
    get:
      tags:
        - multichannel
      summary: Sequence email analytics (date range)
      description: >-
        Returns per-day and aggregate email sending and engagement metrics for a
        multichannel sequence. Query dates are interpreted in `timezone` when
        provided (IANA name), otherwise UTC. Open and click metrics are zeroed
        when the sequence has those tracking modes disabled.
      parameters:
        - description: Workspace ID
          in: path
          name: workspaceID
          required: true
          schema:
            type: string
        - description: Sequence ID
          in: path
          name: sequenceID
          required: true
          schema:
            type: integer
        - description: Start date (inclusive, YYYY-MM-DD)
          in: query
          name: from_date
          required: true
          schema:
            type: string
        - description: End date (inclusive, YYYY-MM-DD)
          in: query
          name: to_date
          required: true
          schema:
            type: string
        - description: IANA timezone for day boundaries (default UTC)
          in: query
          name: timezone
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/responses.SequenceSendingAnalyticsResponse
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Not Found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Internal Server Error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    responses.SequenceSendingAnalyticsResponse:
      properties:
        days:
          additionalProperties:
            $ref: '#/components/schemas/responses.SequenceSendingAnalyticsDay'
          type: object
        from_date:
          type: string
        stats:
          $ref: '#/components/schemas/responses.SequenceSendingAnalyticsStats'
        timezone:
          type: string
        to_date:
          type: string
      type: object
    responses.ErrorResponse:
      properties:
        data:
          description: >-
            Optional error context. Its shape depends on the message and
            endpoint.
        message:
          description: >-
            Human-readable error text or, for documented cases, a stable
            machine-readable code that clients can branch on.
          example: Invalid request body
          type: string
      type: object
    responses.SequenceSendingAnalyticsDay:
      properties:
        replied:
          type: integer
        sent:
          type: integer
        totalClicked:
          type: integer
        totalOpened:
          type: integer
        uniqueClicked:
          type: integer
        uniqueOpened:
          type: integer
      type: object
    responses.SequenceSendingAnalyticsStats:
      properties:
        bounceRatePercent:
          type: number
        bounced:
          type: integer
        clickRatePercent:
          type: number
        clicked:
          type: integer
        contacted:
          type: integer
        openRatePercent:
          type: number
        opened:
          type: integer
        opportunitiesCount:
          type: integer
        optOutRatePercent:
          type: number
        optOuts:
          type: integer
        positiveReplyRatePercent:
          type: number
        replied:
          type: integer
        repliedPositive:
          type: integer
        replyRatePercent:
          type: number
        totalClicks:
          type: integer
        totalOpens:
          type: integer
        totalOpportunitiesValue:
          type: number
        trackOpportunitiesEnabled:
          type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: Authorization
      type: apiKey

````