# Mood tracking

> Get and submit mood scores for wellbeing tracking.

Language: en
Canonical: https://www.dailybot.com/developers/api/mood
Markdown: send header `Accept: text/markdown` on any URL to receive Markdown instead of HTML.
Last Updated: 2026-04-06

---

# Mood tracking

Get and submit mood scores for team wellbeing tracking.

## Endpoints summary

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/v1/mood/track/` | Get mood scores |
| POST | `/v1/mood/track/` | Submit a mood score |

---

## GET /v1/mood/track/

Returns mood tracking data for the organization.

### Query parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `user_uuid` | string (UUID) | No | Filter by user. |
| `date_start` | string | No | Start date (YYYY-MM-DD). |
| `date_end` | string | No | End date (YYYY-MM-DD). |
| `limit` | integer | No | Number of results. Default: 250, max: 250. |
| `offset` | integer | No | Pagination offset. |

```bash
curl -X GET "https://api.dailybot.com/v1/mood/track/?date_start=2026-04-01&date_end=2026-04-06" \
  -H "X-API-KEY: your_api_key"
```

**Response (200 OK):**

```json
{
  "count": 5,
  "results": [
    {
      "id": "mood-uuid",
      "user": { "uuid": "usr_abc123", "name": "Jane Doe" },
      "score": 4,
      "note": "Good day, shipped a feature!",
      "date": "2026-04-05"
    }
  ]
}
```

Mood scores range from 1 (very low) to 5 (excellent).

---

## POST /v1/mood/track/

Submits a mood score for the authenticated user.

### Body parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `score` | integer | Yes | Mood score from 1 to 5. |
| `note` | string | No | Optional text note about the mood. |
| `date` | string | No | Date (YYYY-MM-DD). Defaults to today. |

```bash
curl -X POST "https://api.dailybot.com/v1/mood/track/" \
  -H "X-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "score": 4,
    "note": "Productive day, finished the sprint goal.",
    "date": "2026-04-06"
  }'
```

**Response (201 Created):**

```json
{
  "id": "mood-uuid",
  "user": { "uuid": "usr_abc123", "name": "Jane Doe" },
  "score": 4,
  "note": "Productive day, finished the sprint goal.",
  "date": "2026-04-06"
}
```

## Endpoints in this group

Track mood entries per user.

| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | `/v1/mood/track/` | Track mood entry |

### POST `/v1/mood/track/`

**Track mood entry**

Track mood entry

- **Auth:** API key (`X-API-KEY`), CLI Bearer (write)
- **Rate limit:** `default`
- **Pagination:** No pagination

#### Error codes

| Status | When |
|--------|------|
| `401` | Missing/invalid/expired credential |
| `403` | Authenticated but not permitted |
| `429` | Throttled - Retry-After header set |
| `400` | Validation error |

#### Example (curl)

```bash
curl -sS -X POST 'https://api.dailybot.com/v1/mood/track/' -H 'X-API-KEY: $DAILYBOT_API_KEY'
```

---

## Developer portal navigation

**Getting Started**

- [Overview](/developers)
- [Quick start](/developers/getting-started)
- [Authentication](/developers/authentication)

**API Reference**

- [API Overview](/developers/api)
- [Users](/developers/api/users)
- [Organization](/developers/api/organization)
- [Teams](/developers/api/teams)
- [Invitations](/developers/api/invitations)
- [Check-ins](/developers/api/check-ins)
- [Forms](/developers/api/forms)
- [Report channels](/developers/api/report-channels)
- [Templates](/developers/api/templates)
- [Kudos](/developers/api/kudos)
- [Mood tracking](/developers/api/mood) (this page)
- [Important dates](/developers/api/important-dates)
- [Messaging](/developers/api/messaging)
- [Automations](/developers/api/workflows)
- [Webhooks](/developers/api/webhooks)
- [Commands platform](/developers/api/commands-platform)
- [Agents](/developers/api/agents)
- [OAuth2](/developers/api/oauth2)
- [Integrations](/developers/api/integrations)
- [CLI](/developers/api/cli)

**API guides**

- [Errors & Status Codes](/developers/errors)
- [Rate Limits](/developers/rate-limits)
- [Conventions](/developers/conventions)
- [API Changelog](/developers/api-changelog)
- [Recipes](/developers/recipes)

**Developer Features**

- [Custom commands](/developers/custom-commands)
- [Serverless commands](/developers/serverless)
- [Webhooks & events](/developers/webhooks)
- [Automation API trigger](/developers/workflow-trigger)
- [Activity API](/developers/activity-api)

**CLI**

- [Overview](/developers/cli)
- [Authentication](/developers/cli-authentication)
- [Command reference](/developers/cli-reference)
- [CI/CD recipes](/developers/cli-ci-cd)
- [Configuration](/developers/cli-configuration)
- [Troubleshooting](/developers/cli-troubleshooting)

**Agent Skill**

- [Overview](/developers/agent-skill)
- [Skills catalog](/skills)

---

## Site navigation

**Product:**
- [Home](/)
- [Product](/product)
- [Pricing](/pricing)
- [Enterprise](/enterprise)
- [Integrations](/integrations)
- [Templates](/templates)

**Resources:**
- [Blog](/blog)
- [Academy](/academy)
- [Changelog](/changelog)
- [Help Center](/help)
- [Developers](/developers)
- [Agents](/agents)

**Company:**
- [About](/about)
- [Careers](/careers)
- [Security](/security)
- [Contact Sales](/demo)

**Connect:**
- [LinkedIn](https://www.linkedin.com/company/dailybot/)
- [X/Twitter](https://twitter.com/dailybot)
- [GitHub](https://github.com/Dailybot-Inc)
- [YouTube](https://www.youtube.com/channel/UC3uM9V52vwX7e3vQpCc4qvA)

