List Roadmaps
List the roadmaps owned by the authenticated principal. Use this route when your application needs to discover or reconcile previously created roadmap resources.
GET
/api/v1/roadmaps/list
Example request
curl https://api.vidbyte.ai/api/v1/roadmaps/list \
-H "x-api-key: vb_live_your_api_key"Example response
{
"success": true,
"data": [
{
"id": "rdm_Qj3Y5N0k2b",
"title": "Backend API platform roadmap",
"experience": ["intermediate"],
"timeline": "8 weeks",
"resource_preference": ["reading and docs"],
"modules": [{ "title": "API fundamentals" }]
}
],
"pagination": { "limit": 100, "page": 1, "has_more": false }
}