# Templates

> Browse workflow and check-in templates available in the organization.

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

---

# Templates

Browse pre-built check-in templates available in the organization. Templates are the ready-made configurations Dailybot ships (daily standup, retro, mood, blocker triage, and more), and are the same catalog used when creating a new check-in via the [Check-ins API](/developers/api/check-ins).

The interactive reference — with live parameter tables, request/response schemas, and copy-pasteable curl samples — is at [/developers/api/templates](/developers/api/templates).

## Endpoints summary

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/v1/templates/` | List all available templates |
| GET | `/v1/templates/{id}/` | Get a specific template |

---

## GET /v1/templates/

Returns all available check-in and form templates for the organization.

### Query parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `type` | string | No | Filter by template type: `check_in` or `form`. |
| `limit` | integer | No | Number of results. Default: 250. |
| `offset` | integer | No | Pagination offset. |

```bash
curl -X GET "https://api.dailybot.com/v1/templates/" \
  -H "X-API-KEY: your_api_key"
```

**Response (200 OK):**

```json
{
  "count": 4,
  "results": [
    {
      "id": "tmpl_daily_standup",
      "name": "Daily Standup",
      "type": "check_in",
      "description": "Standard daily standup with three questions.",
      "questions": [
        { "id": "q1", "text": "What did you do yesterday?", "type": "text_field", "is_blocker": false },
        { "id": "q2", "text": "What are you doing today?", "type": "text_field", "is_blocker": false },
        { "id": "q3", "text": "Any blockers?", "type": "text_field", "is_blocker": true }
      ]
    },
    {
      "id": "tmpl_weekly_retro",
      "name": "Weekly Retrospective",
      "type": "check_in",
      "description": "End-of-week reflection and planning template.",
      "questions": [
        { "id": "q1", "text": "What went well this week?", "type": "text_field", "is_blocker": false },
        { "id": "q2", "text": "What could be improved?", "type": "text_field", "is_blocker": false },
        { "id": "q3", "text": "Key priorities for next week?", "type": "text_field", "is_blocker": false }
      ]
    }
  ]
}
```

---

## GET /v1/templates/{id}/

Returns a specific template.

```bash
curl -X GET "https://api.dailybot.com/v1/templates/tmpl_daily_standup/" \
  -H "X-API-KEY: your_api_key"
```

**Response (200 OK):**

```json
{
  "id": "tmpl_daily_standup",
  "name": "Daily Standup",
  "type": "check_in",
  "description": "Standard daily standup with three questions.",
  "questions": [
    { "id": "q1", "text": "What did you do yesterday?", "type": "text_field", "is_blocker": false },
    { "id": "q2", "text": "What are you doing today?", "type": "text_field", "is_blocker": false },
    { "id": "q3", "text": "Any blockers?", "type": "text_field", "is_blocker": true }
  ]
}
```

## Endpoints in this group

Retrieve check-in templates, including rendered question variables.

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/v1/templates/` | List templates |
| GET | `/v1/templates/{id}/` | Retrieve a template |

### GET `/v1/templates/`

**List templates**

List templates

- **Auth:** API key (`X-API-KEY`), CLI Bearer (read), OAuth 2.0
- **Rate limit:** `default`
- **Pagination:** Page-number pagination

#### Query parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `render_special_vars` | boolean | No | Render placeholders inline. |
| `followup_id` | string (uuid) | No | — |

#### Error codes

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

#### Example (curl)

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

### GET `/v1/templates/{id}/`

**Retrieve a template**

Retrieve a template

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

#### Path parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `id` | string (uuid) | Yes | — |

#### Error codes

| Status | When |
|--------|------|
| `401` | Missing/invalid/expired credential |
| `403` | Authenticated but not permitted |
| `429` | Throttled - Retry-After header set |
| `404` | Not found or not visible |

#### Example (curl)

```bash
curl -sS -X GET 'https://api.dailybot.com/v1/templates/{id}/' -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) (this page)
- [Kudos](/developers/api/kudos)
- [Mood tracking](/developers/api/mood)
- [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)

