Skip to content

Get project

GET /api/projects/:projectName

Schema

{
"name": string,
"description": string,
"repoLink": string?,
}

Example

Terminal window
$ curl -X GET https://blob.build/api/projects/Slimefun4 \
-H "Content-Type: application/json"
{
"success": true,
"message": "Success",
"data": {
"name": "Slimefun4",
"description": "A new project",
"repoLink": "https://github.com/Slimefun/Slimefun4"
}
}