List projects
GET /api/projects
Schema
[ { "name": string, "owner": string, "releaseChannels": [ string?, ...?, ], } ...?,]Example
$ curl -X GET https://blob.build/api/projects \ -H "Content-Type: application/json"{ "success": true, "message": "Success", "data": [ { "name": "Slimefun4", "owner": "Slimefun", "releaseChannels": [ "Dev", "RC" ] } ]}