Get a Roadmap Module
Fetch a single roadmap module by roadmap id and module index. This is the focused retrieval path when you do not want to pull the full roadmap payload again.
GET
/api/v1/roadmaps/get/{encrypted_id}/{module_number}
Example request
curl https://api.vidbyte.ai/api/v1/roadmaps/get/rdm_Qj3Y5N0k2b/0 \
-H "x-api-key: vb_live_your_api_key"Example response
{
"success": true,
"id": "rdm_Qj3Y5N0k2b",
"data": {
"title": "Backend API platform roadmap",
"module_number": 0,
"prompt": "Build a backend API platform roadmap",
"module": { "title": "API fundamentals", "resources": [{ "title": "Design a versioned contract", "type": "reading" }] }
}
}Parameter information
These are the public parameters for /api/v1/roadmaps/get/{encrypted_id}/{module_number}. Path parameters and request-body fields are shown together so the page stays focused on the live request contract you actually send.
encrypted_idstringRequired
The public encrypted identifier previously returned by a create or list route. Pass it back exactly as returned when you want to fetch that resource again.