curl --request GET \
--url https://{deployment}.convex.site/v1/projects{
"projects": [
{
"id": "proj_abc123",
"name": "My App",
"sourceLocale": "en",
"targetLocales": [
"nl-NL",
"fr-FR"
],
"translationHealth": 0.94,
"updatedAt": 1739712000000
}
]
}List all projects owned by the authenticated user. Returns project name, locales, and translation health. Requires user session (API tokens cannot list projects).
curl --request GET \
--url https://{deployment}.convex.site/v1/projects{
"projects": [
{
"id": "proj_abc123",
"name": "My App",
"sourceLocale": "en",
"targetLocales": [
"nl-NL",
"fr-FR"
],
"translationHealth": 0.94,
"updatedAt": 1739712000000
}
]
}Successfully retrieved projects
Show child attributes