Get project
GET /api/projects/:projectName
Schema
{ "name": string, "description": string, "repoLink": string?,}Example
$ 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" }}