Get project
Get a project from your account
GET api/projects/{project}
Example request:
curl -X GET "https://ploi.io/api/projects/{project}" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Example response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"data": {
"id": 1,
"title": "My Awesome Project",
"servers": [],
"sites": [],
"created_at": "2022-07-29 07:44:23"
}
}