curl --request POST \
--url https://api.phylo.bio/v1/projects \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Patient001 workup"
}
'
{
"id": "prj_0126xxQZB9MmSUaTs1MtRAgU",
"type": "project",
"title": "Patient001 workup",
"description": "",
"created_at": "2026-08-12T22:53:43.299370Z",
"updated_at": "2026-08-12T22:53:43.299374Z"
}
Projects
Create a project
Create a project to group related tasks and files.
POST
/
projects
curl --request POST \
--url https://api.phylo.bio/v1/projects \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Patient001 workup"
}
'
{
"id": "prj_0126xxQZB9MmSUaTs1MtRAgU",
"type": "project",
"title": "Patient001 workup",
"description": "",
"created_at": "2026-08-12T22:53:43.299370Z",
"updated_at": "2026-08-12T22:53:43.299374Z"
}
A project groups related tasks and holds the files they read and write.
Authorizations
Requires an API key. See the Authentication guide.
Body
application/json
