GET
/
v0
/
projects
curl --request GET \
  --url 'https://api.unify.ai/v0/projects' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "project_a",
    "project_b",
    "project_c"
]

Returns the names of all projects stored in your account.

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' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "project_a",
    "project_b",
    "project_c"
]