List your projects with optional filtering and pagination.
curl "https://faces.app/api/v1/projects?limit=5&published=true" \
-H "Authorization: Bearer $FACES_API_KEY"
{
"projects": [
{
"slug": "xK9mP2qR",
"name": "AI Healthcare Pitch",
"publishedAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T12:00:00.000Z",
"editorUrl": "https://faces.app/s/xK9mP2qR"
}
],
"nextCursor": "cm1xyz789..."
}
true for published only, false for unpublished only.nextCursor field.curl "https://faces.app/api/v1/projects?limit=5&published=true" \
-H "Authorization: Bearer $FACES_API_KEY"
{
"projects": [
{
"slug": "xK9mP2qR",
"name": "AI Healthcare Pitch",
"publishedAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T12:00:00.000Z",
"editorUrl": "https://faces.app/s/xK9mP2qR"
}
],
"nextCursor": "cm1xyz789..."
}
cursor query parameter to fetch the next page. Absent when there are no more results.curl "https://faces.app/api/v1/projects?limit=5&published=true" \
-H "Authorization: Bearer $FACES_API_KEY"
{
"projects": [
{
"slug": "xK9mP2qR",
"name": "AI Healthcare Pitch",
"publishedAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T12:00:00.000Z",
"editorUrl": "https://faces.app/s/xK9mP2qR"
}
],
"nextCursor": "cm1xyz789..."
}