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

Returns details of a specific favorite project.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

The ID of the favorite to retrieve

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