# List lesson performance for a product

`GET https://api.cademi.com.br/api/v3/reports/lessons`

Operation ID: `reports.lessons.list` · API v3

Returns performance metrics for each lesson of the product identified by `product_id`, which is required.

Required permissions: `reports.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `product_id` | query | string | yes |  |
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |
| `sort` | query | string, one of `id`, `-id` | no |  |

## Responses

### 200

Returns the lesson report rows.

Body: `data`: array of ReportRow.

Fields of ReportRow:

| Field | Type | Required | Description |
|---|---|---|---|
| `object` | string, one of `report_row` | yes |  |
| `report` | string | yes | ID of the report in the report catalog. |

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