GET /v1/platform/modules
Lists modules owned by the authenticated platform workspace.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
limit | number | Page size, default 20, max 100 |
offset | number | Zero-based offset, default 0 |
search | string | Optional title/description search |
Example Request
curl "https://api.tutorflow.io/v1/platform/modules?limit=10&offset=0" \
-H "Authorization: Bearer tf_platform_..."Example Response
{
"items": [
{
"id": "4d3b7f2a-7b8f-497c-a1d9-58b7f2e0c111",
"title": "Python Variables",
"type": "markdown",
"status": "completed",
"publicUrl": "https://tutorflow.io/en/platform/modules/b018172542f9...",
"createdAt": "2026-04-27T10:00:00.000Z"
}
],
"total": 1
}