---
title: "List Captures"
method: GET
path: "/api/admin/captures"
tags: ["admin"]
---

# List Captures

`GET /api/admin/captures`

List all captures for a product.

Returns captures sorted by created_at descending (newest first).

## Query parameters

- `product_id` string, required — Product ID to filter captures
- `status` string, nullable — Filter by status (pending, processed, archived)
- `limit` integer — Max number of captures to return
- `offset` integer — Number of captures to skip

## Headers

- `authorization` string, required

## Response `200`

Successful Response

- CaptureListResponse — Response for listing captures.
  - `captures` CaptureResponse[], required
    - `id` string, required
    - `product_id` string, required
    - `url` string, required
    - `title` string, nullable, required
    - `simplified_dom` string, required
    - `screenshot_url` string, nullable, required
    - `screenshot_urls` string[], nullable
    - `viewport_width` integer, nullable, required
    - `viewport_height` integer, nullable, required
    - `captured_at` string, nullable, required
    - `created_at` string, required
    - `status` string, required
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas.md) · [All operations](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas/llms.txt) · [OpenAPI document](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas/revisions/dafdd6b267c4?raw)
