---
title: "List Content Hub Sheets"
method: GET
path: "/api/v1/content/sheets"
tags: ["Content"]
---

# List Content Hub Sheets

`GET /api/v1/content/sheets`

Returns the Content Hub tabs configured for a website. Each tab is either a `sheet` (content pinned via `content.sheet_id`) or a `view` (saved filter layout over the main content pool). Call this first to discover the `sheet_id`s you can pass to `POST /api/v1/content`.

## Query parameters

- `website_id` string, uuid, required

## Response `200`

Successful response with the list of sheets, ordered by `position` ascending.

- object
  - `sheets` ContentSheet[], required
    - `id` string, uuid, required — Unique identifier for the sheet.
    - `name` string, required — Human-readable name shown in the Content Hub UI.
    - `sheet_type` 'view' | 'sheet', required — `sheet`: content is pinned to this tab via `content.sheet_id`. `view`: saved filter / column layout over the main content pool — content matches dynamically and has no `sheet_id` set.
    - `is_default` boolean, required — Whether this tab is the workspace default. Exactly one tab per website has `is_default: true`.
    - `position` integer, required — Sort order in the UI (ascending).
    - `created_at` string, date-time, required — When the sheet was created (UTC).
    - `updated_at` string, date-time, required — When the sheet was last modified (UTC).

## Other responses

- `400` — Bad request — invalid parameters.
- `401` — Unauthorized — invalid or missing API key.
- `403` — Forbidden — you don't have access to this website.
- `500` — Internal server error.

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/versions/6c5d71622cb9/schema)
