For Developers
List Modules
GET https://ed.link/api/v2/my/classes/:class_id/modules
Retrieve a list of Modules that belong to a given Class.
This endpoint can be used as part of traversing the modules structure for a class.
Request Parameters
| Parameter | Type | Description | 
|---|---|---|
class_id | string | The UUID of the desired Class. | 
This query allows for paging via the $next parameter.
Sample Request
axios.get(`https://ed.link/api/v2/my/classes/${class_id}/modules`, {
    headers: {
        authorization: `Bearer ${person_access_token}`
    }
});
Sample Response
{
    "$data": [
        {
            "title": "Module 1",
            "display_date": "2025-07-02T15:00:00.000Z",
            "updated_date": "2025-06-30T15:34:59.513Z",
            "identifiers": [
                {
                    "type": "brightspace_id",
                    "value": "123"
                }
            ],
            "rule_ids": [],
            "references": {},
            "id": "00000000-0000-0000-0000-000000000000"
        },
        {
            "title": "Module 2",
            "display_date": null,
            "updated_date": "2025-06-27T20:48:03.557Z",
            "identifiers": [
                {
                    "type": "brightspace_id",
                    "value": "1234"
                }
            ],
            "rule_ids": [],
            "references": {},
            "id": "00000000-0000-0000-0000-000000000000"
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}
Supported Providers
- blackboard
 - brightspace
 - canvas
 - microsoft
 - schoology