---
title: "Create Dashboard"
method: POST
path: "/v1/dashboards"
tags: ["Dashboards"]
---

# Create Dashboard

`POST /v1/dashboards`

Create an empty dashboard. Add widgets with POST /v1/widgets or POST /v1/dashboards/{id}/widgets/{widget_id}.

## Headers

- `X-API-Key` string, required

## Request body

- CreateDashboardBody
  - `name` string, required — Dashboard name
  - `description` string, nullable
  - `data_type` 'observability' | 'simulation' — Which data the dashboard visualizes

## Response `200`

Successful Response

- DashboardModel
  - `id` string, required
  - `organization_id` string, nullable
  - `name` string, required
  - `description` string, nullable
  - `is_curated` boolean
  - `created_by` string, nullable
  - `created_at` string, nullable
  - `data_type` string, required
  - `agent_id` integer, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/getbluejay/apis/bluejay-api.md) · [All operations](https://skmtc.net/getbluejay/apis/bluejay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getbluejay/bluejay-api/revisions/f48cef80963f/schema)
