`GET /api/v1/modules/{name}` — get a module's details and content.
GET
/api/v1/modules/{name}
const url = 'https://example.com/api/v1/modules/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/modules/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” name
required
string
Module name
Responses
Section titled “ Responses ”Module details and content
Media type application/json
Example generated
exampleModule not found