Get project
Get a specific project from your account.
GET/api/projects/{project}
Get a project
This endpoint allows you to retrieve details for a specific project by its ID.
Request
GET
/api/projects/{project}curl -G "https://ploi.io/api/projects/{project}" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response
{
"data": {
"id": 1,
"title": "My Awesome Project",
"servers": [],
"sites": [],
"created_at": "2022-07-29 07:44:23"
}
}