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

# Bulk analyze conversations

> Triggers bulk sentiment analysis for past conversations.



## OpenAPI

````yaml /api-reference/voxys_analytics_swagger.json post /api/v1/accounts/{account_id}/customer_pulse/bulk_analyze
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: Customer Pulse
    description: Sentiment analysis and customer pulse metrics
  - name: Leads Reports
    description: Lead pipeline analytics and CSV export (v2)
paths:
  /api/v1/accounts/{account_id}/customer_pulse/bulk_analyze:
    post:
      tags:
        - Customer Pulse
      summary: Bulk analyze conversations
      description: Triggers bulk sentiment analysis for past conversations.
      operationId: bulkAnalyzeCustomerPulse
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                days:
                  type: integer
                  description: Number of past days to analyze
                  example: 30
                inbox_ids:
                  type: array
                  items:
                    type: integer
                  description: Limit analysis to these inbox IDs (omit for all)
      responses:
        '200':
          description: Bulk analysis enqueued
        '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.

````