Skip to main content
GET
/
api
/
v1
/
logs
/
monthly-summary
Get Monthly Summary
curl --request GET \
  --url https://usebreezee.xyz/api/v1/logs/monthly-summary \
  --header 'X-API-Key: <api-key>'
Returns a summary of the total amount spent during the last three months, based on the application logs.

Responses

200: Success

{
  "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
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response