GET
/
v0
/
project
/
favorites
curl --request GET \
  --url 'https://api.unify.ai/v0/project/favorites' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "id": 1,
        "project": "my-project",
        "icon": "star",
        "position": 0
    },
    {
        "id": 2,
        "project": "another-project",
        "icon": "folder",
        "position": 1
    }
]

Returns a list of the user’s favorite projects, sorted by position.

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/project/favorites' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "id": 1,
        "project": "my-project",
        "icon": "star",
        "position": 0
    },
    {
        "id": 2,
        "project": "another-project",
        "icon": "folder",
        "position": 1
    }
]