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

# Get status breakdown

> Retrieve message status breakdown



## OpenAPI

````yaml GET /analytics/status-breakdown
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /analytics/status-breakdown:
    get:
      tags:
        - Analytics
      summary: Get status breakdown
      description: Retrieve message status breakdown
      operationId: getStatusBreakdown
      parameters:
        - name: date_from
          in: query
          description: Start date for status breakdown
          schema:
            type: string
            format: date
        - name: date_to
          in: query
          description: End date for status breakdown
          schema:
            type: string
            format: date
      responses:
        '200':
          description: Status breakdown retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    status:
                      type: string
                    count:
                      type: integer
                    percentage:
                      type: number
                example:
                  - status: delivered
                    count: 121250
                    percentage: 96.67
                  - status: failed
                    count: 4180
                    percentage: 3.33
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````