# Retrieve product progress

`GET https://api.cademi.com.br/api/v3/users/{user_id}/products/{product_id}/progress`

Operation ID: `users.products.progress.get` · API v3

Retrieves the user's progress in a single product, in the same format used when listing the user's progress across products.

Required permissions: `progress.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `user_id` | path | string | yes |  |
| `product_id` | path | string | yes |  |

## Responses

### 200

Returns the user's progress in the product.

Body: `data`: ProductProgress.

Fields of ProductProgress:

| Field | Type | Required | Description |
|---|---|---|---|
| `completed_at` | string or null (date-time) | yes |  |
| `completed_lessons` | integer | yes |  |
| `last_activity_at` | string or null (date-time) | yes |  |
| `object` | string, one of `product_progress` | yes |  |
| `percent` | integer | yes |  |
| `product_id` | string | yes |  |
| `started_at` | string or null (date-time) | yes |  |
| `total_lessons` | integer | yes |  |
| `user_id` | string | 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 user or product was not found or is not accessible with the current credentials.

Body: Error.

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