Skip to main content
GET
/
api
/
moods
/
stats
curl "https://api.hitler.app/api/moods/stats?days=30" \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "averageMood": 3.7,
  "totalEntries": 22,
  "moodTrend": "improving",
  "distribution": {
    "1": 0,
    "2": 2,
    "3": 8,
    "4": 10,
    "5": 2
  }
}
This endpoint requires authentication.

Query Parameters

days
integer
default:"30"
Number of days to analyze (max 365)

Response

averageMood
number
Average mood score over the period
totalEntries
integer
Number of mood entries in the period
moodTrend
string
Trend direction: improving, stable, or declining
distribution
object
Count of entries per mood value
curl "https://api.hitler.app/api/moods/stats?days=30" \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "averageMood": 3.7,
  "totalEntries": 22,
  "moodTrend": "improving",
  "distribution": {
    "1": 0,
    "2": 2,
    "3": 8,
    "4": 10,
    "5": 2
  }
}