# List showcase products

`GET https://api.cademi.com.br/api/v3/showcases/{showcase_id}/products`

Operation ID: `showcases.products.list` · API v3

Lists the products in a showcase in summary form, ordered by position and paginated with a cursor. Requires both the `showcases.read` and `products.read` permissions.

Credentials limited to specific products only see those products.

Required permissions: `showcases.read`, `products.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `showcase_id` | path | string | yes |  |
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |
| `sort` | query | string, one of `position`, `-position` | no |  |

## Responses

### 200

Returns a page of products in the showcase, in summary form.

Body: `data`: array of ProductSummary.

Fields of ProductSummary:

| Field | Type | Required | Description |
|---|---|---|---|
| `id` | string | yes | Public ID, with the prd_ prefix. |
| `name` | string | yes |  |
| `object` | string, one of `product` | yes |  |
| `position` | integer | yes |  |
| `status` | string, one of `published`, `draft`, `unlisted`, `hidden` | yes |  |

### 400

The cursor is invalid or the request contains an unsupported query parameter.

Body: Error.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The showcase was not found or is not accessible with the current credentials.

Body: Error.

### 422

The request body or query parameters failed validation.

Body: ValidationFailed.

Full schema: https://cademi.dev/openapi/v3.json
