---
title: "Get Insights"
method: GET
path: "/v1/insights"
tags: ["Insights"]
---

# Get Insights

`GET /v1/insights`

Retrieve all insights available to the authenticated account. Insights are named collections of AI-powered prompts that analyze conversation transcripts and meeting recordings; each one groups related prompts (items) under a category such as `Earnings Call` or `Company Presentation`. The response includes both **shared** insights (`accountId` is null) and **account-specific** insights visible only to the owning account.

## Response `200`

Insights retrieved successfully

- object
  - `data` object[] — Array of insights
    - `id` string, uuid, required — Insight ID
    - `accountId` string, uuid, nullable — Account ID (nullable for shared)
    - `name` string, required — Insight name
    - `description` string — Insight description
    - `active` boolean, required — Whether this insight is active
    - `createdAt` string, date-time — Creation time
    - `updatedAt` string, date-time — Last update time
    - `items` object[] — Insight items
      - `id` string, uuid, required
      - `insightId` string, uuid, required
      - `name` string, required
      - `content` string, required
      - `createdAt` string, date-time, required
      - `updatedAt` string, date-time, required
  - `pagination` object
    - `page` integer, required
    - `pageSize` integer, required
    - `total` integer, required
    - `totalPages` integer, required

## Other responses

- `401` — Unauthorized (invalid or missing API key)
- `403` — Forbidden (key lacks access to this resource)
- `500` — Internal server error

---

[API](https://skmtc.net/phrase/apis/control-hub-service.md) · [All operations](https://skmtc.net/phrase/apis/control-hub-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/phrase/control-hub-service/revisions/98ecac7ba2bf/schema)
