# Course Progress

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/courses/{course_id}/progress`

#### Path Parameters

| Name       | Type    | Description              |
| ---------- | ------- | ------------------------ |
| course\_id | integer | ID of the course to like |

#### Headers

{% tabs %}
{% tab title="200 OK" %}

```json
{
    "status": 200,
    "response_code": 0,
    "success": true,
    "errors": [],
    "message": "Progress retrieved",
    "data": {
        "completed": 0,
        "total": 2,
        "percentage": 0.0,
        "message": "Completed 0/2 lessons",
        "lessons": [
            {
                "lesson_id": 53,
                "title": "Receive funds",
                "status": "not_started",
                "quiz_status": "not_started"
            },
            {
                "lesson_id": 54,
                "title": "Fund receipt concerns",
                "status": "not_started",
                "quiz_status": "not_started"
            }
        ],
        "course_status": "not_started"
    }
}
```

{% endtab %}

{% tab title="404 Not Found" %}

```json
{
    "status": 404,
    "message": "Course not found"
}
```

{% endtab %}
{% endtabs %}
