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

# Fetch platform activity summary

> Generates a platform activity summary with monthly breakdowns across all businesses. This is the v2 version that provides more detailed monthly analytics.



## OpenAPI

````yaml get /v2/activity
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v2/activity:
    get:
      tags: []
      summary: Fetch platform activity summary
      description: >-
        Generates a platform activity summary with monthly breakdowns across all
        businesses. This is the v2 version that provides more detailed monthly
        analytics.
      operationId: activity.v2.get
      parameters:
        - name: Content-Type
          in: header
          description: Content-Type must be set to application/json.
          schema:
            type: string
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformActivitySummary'
      deprecated: false
components:
  schemas:
    PlatformActivitySummary:
      type: object
      properties:
        months:
          type: array
          items:
            $ref: '#/components/schemas/PlatformActivityMonthlySummary'
          description: Monthly activity summaries for the platform.
      description: Platform-wide activity summary with monthly breakdowns.
    PlatformActivityMonthlySummary:
      type: object
      properties:
        month:
          type: string
          description: The month in YYYY-MM format.
          example: 2024-07
        creations:
          type: integer
          description: Number of businesses created in this month.
          example: 15
        archivals:
          type: integer
          description: Number of businesses archived in this month.
          example: 2
        categorizations:
          type: integer
          description: Total number of transaction categorizations in this month.
          example: 1250
        categorization_uniq_business:
          type: integer
          description: >-
            Number of unique businesses that performed categorizations in this
            month.
          example: 45
        sms_categorizations:
          type: integer
          description: Number of transaction categorizations done via SMS in this month.
          example: 800
        sms_categorizations_uniq_business:
          type: integer
          description: >-
            Number of unique businesses that performed SMS categorizations in
            this month.
          example: 30
        pnl_loads:
          type: integer
          description: Number of P&L report loads in this month.
          example: 120
        pnl_load_uniq_business:
          type: integer
          description: Number of unique businesses that loaded P&L reports in this month.
          example: 25
        active_businesses:
          type: integer
          description: >-
            Number of businesses that had any activity (categorizations or P&L
            loads) in this month.
          example: 50
      description: Monthly activity summary for a specific month.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````