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

# Event summary counts

> Returns aggregated event counts for the requested window: totals, failure counts, breakdowns by category and error category, plus inbox-specific breakdown. Useful for dashboard summary cards.



## OpenAPI

````yaml /api-reference/openapi.json get /events/summary
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /events/summary:
    get:
      tags:
        - Events
      summary: Event summary counts
      description: >-
        Returns aggregated event counts for the requested window: totals,
        failure counts, breakdowns by category and error category, plus
        inbox-specific breakdown. Useful for dashboard summary cards.
      parameters:
        - description: Lower time bound (RFC3339)
          name: from
          in: query
          schema:
            type: string
        - description: Upper time bound (RFC3339)
          name: to
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.EventsSummaryResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.EventsSummaryResponse:
      type: object
      properties:
        by_category:
          type: object
          additionalProperties:
            type: integer
        by_error_category:
          type: object
          additionalProperties:
            type: integer
        failed:
          type: integer
        inbox_breakdown:
          type: object
          additionalProperties:
            type: integer
        retention_days:
          type: integer
        total:
          type: integer
        total_previous:
          type: integer
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````