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

# Get Automation Replies

> Returns all replies for a specific automation within a specified time period

Returns all replies for a specific automation within a specified time period. This endpoint provides access to reply data including message content, sentiment analysis, and timestamps. Use the `from` and `to` query parameters to filter by date range.


## OpenAPI

````yaml GET /automations/{id}/replies
openapi: 3.0.1
info:
  title: Drippi Public API
  description: API for accessing Drippi automation and lead management data
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.drippi.ai/api/v1
    description: Production API server
security:
  - apiKeyAuth: []
paths:
  /automations/{id}/replies:
    get:
      tags:
        - Automations
      summary: Get automation replies
      description: >-
        Returns all replies for a specific automation within a specified time
        period
      parameters:
        - name: id
          in: path
          description: Automation ID
          required: true
          schema:
            type: string
        - name: from
          in: query
          description: Start date (ISO 8601 format)
          schema:
            type: string
            format: date-time
        - name: to
          in: query
          description: End date (ISO 8601 format)
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: Successfully retrieved replies
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  replies:
                    type: array
                    items:
                      $ref: '#/components/schemas/Reply'
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Reply:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the reply
        messageId:
          type: string
          description: Twitter message ID
        associatedUserAccount:
          type: string
          description: Twitter ID of the user account that received the reply
        message:
          type: string
          description: Reply message content
        classification:
          type: string
          description: Classification of the reply (e.g., 'Interested', 'Unknown')
        createdAt:
          $ref: '#/components/schemas/Timestamp'
    Error:
      type: object
      properties:
        status:
          type: string
          example: error
        message:
          type: string
          example: Something went wrong
    Timestamp:
      type: object
      properties:
        _seconds:
          type: integer
          description: Unix timestamp in seconds
        _nanoseconds:
          type: integer
          description: Nanoseconds part of the timestamp
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````