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

# Get Daily DM Outreach Analytics

> Retrieve day-by-day metrics for initial DMs, actions executed, and follow-ups sent. Filter by sender account or campaign.



## OpenAPI

````yaml GET /api/v1/analytics/daily
openapi: 3.1.0
info:
  title: Wave Public API
  description: >-


    ### Authentication

    All public endpoints require a valid API Key provided via header:

    * **Authorization:** `Bearer wave_live_...`


    ### Access Control

    API access is tied directly to your Wave subscription. An active or trialing
    subscription is required. Inactive subscriptions will receive a `403
    Forbidden` error.


    ### Rate Limiting

    Requests are limited per API key using a 60-second sliding window. Tiers:
    **Paid** Subscription get 60 requests/min, **Trial** Subscription get 30
    requests/min. Every authenticated response carries `X-RateLimit-Limit`,
    `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers. Exceeding the
    limit returns `429 Too Many Requests` with a `Retry-After` header indicating
    the seconds to wait.
                    
  license:
    name: Proprietary
    url: https://app.usewave.co/
  version: 1.0.0
servers:
  - url: https://api.usewave.co
security: []
paths:
  /api/v1/analytics/daily:
    get:
      tags:
        - Analytics
      summary: Get Daily DM Outreach Analytics
      description: >-
        Retrieves day-by-day outreach metrics for initial DMs sent, actions
        executed, and follow-ups sent.


        - **Date Range**: Defaults to the last 30 days. Automatically capped at
        a maximum 30-day window.

        - **Filters**: Optionally filter by sender Instagram account UUID
        (`account_id`) or campaign UUID (`campaign_id`).
      operationId: get_daily_analytics
      parameters:
        - name: start_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Start date in YYYY-MM-DD or ISO 8601 format (defaults to 30 days
              before end_date)
            title: Start Date
          description: >-
            Start date in YYYY-MM-DD or ISO 8601 format (defaults to 30 days
            before end_date)
        - name: end_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: End date in YYYY-MM-DD or ISO 8601 format (defaults to today UTC)
            title: End Date
          description: End date in YYYY-MM-DD or ISO 8601 format (defaults to today UTC)
        - name: filter_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Alias for start_date
            title: Filter Date
          description: Alias for start_date
        - name: account_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter to a specific sender Instagram account UUID
            title: Account Id
          description: Filter to a specific sender Instagram account UUID
        - name: campaign_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter to a specific outreach campaign UUID
            title: Campaign Id
          description: Filter to a specific outreach campaign UUID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicDailyAnalyticsResponse'
        '400':
          description: Bad Request - Invalid parameters or input payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '401':
          description: Unauthorized - Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '403':
          description: Forbidden - Active subscription required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '404':
          description: >-
            Not Found - The resource does not exist or belongs to another
            account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '422':
          description: Unprocessable Entity - Schema validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '429':
          description: Rate Limit Exceeded - Request quota exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '500':
          description: Internal Server Error - Unexpected server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    PublicDailyAnalyticsResponse:
      properties:
        start_date:
          type: string
          title: Start Date
          description: Start date of the range (YYYY-MM-DD)
          example: '2026-08-17'
        end_date:
          type: string
          title: End Date
          description: End date of the range (YYYY-MM-DD)
          example: '2026-09-16'
        data:
          items:
            $ref: '#/components/schemas/PublicDailyAnalyticsItem'
          type: array
          title: Data
          description: Daily breakdown of activity
      type: object
      required:
        - start_date
        - end_date
        - data
      title: PublicDailyAnalyticsResponse
      description: >-
        Daily breakdown response over a date range (capped at maximum last 30
        days).
    ErrorMessageResponse:
      properties:
        status:
          type: integer
          title: Status
          description: HTTP status code
          example: 400
        error:
          type: string
          title: Error
          description: HTTP status phrase or category
          example: Bad Request
        message:
          type: string
          title: Message
          description: Human-readable explanation of the error
          example: Invalid request parameters.
        details:
          anyOf:
            - {}
            - type: 'null'
          title: Details
          description: Granular validation failure details or contextual information
      type: object
      required:
        - status
        - error
        - message
      title: ErrorMessageResponse
      description: Standardized public error response structure modeled after Dripify.
    PublicDailyAnalyticsItem:
      properties:
        date:
          type: string
          title: Date
          description: Date in YYYY-MM-DD format
          example: '2026-09-15'
        dms_sent:
          type: integer
          title: Dms Sent
          description: Initial DMs sent on this day
          default: 0
        actions_done:
          type: integer
          title: Actions Done
          description: Actions completed on this day
          default: 0
        follow_ups_sent:
          type: integer
          title: Follow Ups Sent
          description: Follow-up messages sent on this day
          default: 0
      type: object
      required:
        - date
      title: PublicDailyAnalyticsItem
      description: Daily activity metrics.
  securitySchemes:
    HTTPBearer:
      type: http
      description: 'Enter your API key: `wave_live_<token>`'
      scheme: bearer

````