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

# Logs Summary

Returns a summary of the total amount spent during the last three months, based on the application logs.

### Responses

#### 200: Success

```json theme={null}
{
  "status": true,
  "summaries": [
    {
      "month": "2025-12",
      "total_spent_sats": 5000,
      "count": 12
    },
    {
      "month": "2025-11",
      "total_spent_sats": 3200,
      "count": 8
    },
    {
      "month": "2025-10",
      "total_spent_sats": 1500,
      "count": 4
    }
  ]
}
```


## OpenAPI

````yaml GET /api/v1/logs/monthly-summary
openapi: 3.1.0
info:
  title: Breezee API
  version: 0.1.0
servers:
  - url: https://demo.usebreezee.xyz
    description: Server
security: []
paths:
  /api/v1/logs/monthly-summary:
    get:
      tags:
        - logs
      summary: Get Monthly Summary
      operationId: get_monthly_summary_api_v1_logs_monthly_summary_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````