- Universal API
- Logging
- Projects
- DELDelete Project Contexts
- POSTCommit Project
- POSTRollback Project
- GETGet project commit history
- GETGet Favorites
- POSTCreate Favorite
- GETGet Favorite
- PATCHUpdate Favorite
- DELDelete Favorite
- POSTCreate Project
- DELDelete Project Logs
- DELDelete Project
- PATCHUpdate Project
- GETGet Project
- GETList Projects
- POSTExport Project Template
- POSTImport Project Template
- DEL
- Contexts
- Logs
- Configs
- Account
Projects
Get Favorites
GET
/
v0
/
project
/
favorites
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"id": 1,
"project": "my-project",
"icon": "star",
"position": 0
},
{
"id": 2,
"project": "another-project",
"icon": "folder",
"position": 1
}
]
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"id": 1,
"project": "my-project",
"icon": "star",
"position": 0
},
{
"id": 2,
"project": "another-project",
"icon": "folder",
"position": 1
}
]
Assistant
Responses are generated using AI and may contain mistakes.