# Retrieve a showcase

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

Operation ID: `showcases.get` · API v3

Retrieves a showcase by its public ID, including the number of products it contains.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating the showcase to avoid overwriting a newer version.

Showcases that do not exist or are not accessible with the current credentials return `404 Not Found`.

Required permissions: `showcases.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `showcase_id` | path | string | yes |  |

## Responses

### 200

Returns the requested showcase.

Body: `data`: Showcase.

Fields of Showcase:

| Field | Type | Required | Description |
|---|---|---|---|
| `created_at` | string (date-time) | yes |  |
| `deleted` | boolean | yes |  |
| `id` | string | yes | Public ID, with the shw_ prefix. |
| `image` | string or null | yes |  |
| `kind` | string, one of `group`, `showcase` | yes |  |
| `name` | string | yes |  |
| `object` | string, one of `showcase` | yes |  |
| `parent_id` | string or null | yes |  |
| `position` | integer | yes |  |
| `products_count` | integer | yes |  |
| `revision` | string | yes |  |
| `status` | string, one of `published`, `draft`, `unlisted`, `hidden` | yes |  |
| `updated_at` | string (date-time) | yes |  |

### 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.

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