---
title: "List structured sheets"
method: GET
path: "/v1/structured-sheets"
tags: ["Structured Sheets"]
---

# List structured sheets

`GET /v1/structured-sheets`

List all structured sheets conversions for the authenticated user. Results are paginated using cursor-based pagination.

## Query parameters

- `limit` integer — Maximum number of results to return per page.
- `after` string, nullable — Unique identifier for a structured sheet conversion.

## Response `200`

Successful Response

- StructuredSheetListResponse — Paginated response for listing structured sheet conversions. Uses cursor-based pagination for efficient iteration through results.
  - `object` 'list', required — The object type, which is always 'list'.
  - `data` StructuredSheetResponse[], required — List of structured sheet conversions.
    - `id` string, required — The unique identifier for this structured sheet conversion.
    - `object` 'structured_sheet', required — The object type, which is always 'structured_sheet'.
    - `file_id` string, required — The unique identifier for the source file.
    - `status` 'queued' | 'in_progress' | 'completed' | 'failed' | 'cancelled', required — Status of processing for structured sheets. - queued: Job is queued and waiting to be processed - in_progress: Job is currently being processed - completed: Processing finished successfully - failed: Processing encountered an error - cancelled: Processing was cancelled by the user
    - `last_error` ProcessingError — Error information when processing fails.
      - `code` string, required — A machine-readable error code.
      - `message` string, required — A human-readable description of the error.
    - `table_count` integer, nullable — Number of tables extracted from the workbook. Only present when status is 'completed'.
    - `created_at` string, date-time, required — The timestamp when the conversion was started.
    - `updated_at` string, date-time, required — The timestamp when the conversion was last updated.
    - `sheet_names` string[] — List of sheet names included in this conversion.
  - `first_id` string, nullable — Unique identifier for a structured sheet conversion.
  - `last_id` string, nullable — Unique identifier for a structured sheet conversion.
  - `has_more` boolean, required — Whether there are more results available after this page.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Content
- `429` — Too Many Requests

## Changes

- **2026-01-30** `343b87354807` — 4 info
  - the response property `data/items/object` became required for the status `200`
  - the response property `object` became required for the status `200`
  - the `object` response's property default value `list` was removed for the status `200`
  - the `object` response's property default value `structured_sheet` was removed for the status `200`
- **2026-01-27** `8ac85d74d2c5` — 4 info
  - added `subschema #1: Structured Sheet ID` to the `first_id` response property `anyOf` list for the response status `200`
  - added `subschema #1: Structured Sheet ID` to the `last_id` response property `anyOf` list for the response status `200`
  - removed `subschema #1: Structured Sheets ID` from the `first_id` response property `anyOf` list for the response status `200`
  - removed `subschema #1: Structured Sheets ID` from the `last_id` response property `anyOf` list for the response status `200`
- **2026-01-26** `f87ec588f22a` — 1 breaking, 3 info
  - for the `query` request parameter `limit`, the type/format was changed from `integer`/`` to `integer`/`int32`
  - added the non-success response with the status `401`
  - added the non-success response with the status `403`
  - added the non-success response with the status `429`
- …earlier changes not shown

[Full history](https://skmtc.dev/deeptable-com/apis/deeptable-api/changes/v1/structured-sheets/get.md)

---

[API](https://skmtc.dev/deeptable-com/apis/deeptable-api.md) · [All operations](https://skmtc.dev/deeptable-com/apis/deeptable-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/deeptable-com/deeptable-api/revisions/acfb7545d197/schema)
