GET
/
v0
/
projects
/
tree
curl --request GET \
  --url 'https://api.unify.ai/v0/projects/tree' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "project": "string",
    "icon": "string",
    "interfaces": "[string]",
    "favorite": "boolean",
    "position": "integer | null"
}
Return all projects the user can access with their icons and interface names.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
  --url 'https://api.unify.ai/v0/projects/tree' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "project": "string",
    "icon": "string",
    "interfaces": "[string]",
    "favorite": "boolean",
    "position": "integer | null"
}