Returns all projects in the workspace, ordered by name.
Request
Bearer token for a workspace API key scoped to this workspace.
curl "https://app.askgrapple.com/api/v1/workspaces/acme-corp/projects" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
List of projects in the workspace.
Number of materialized rows in the project.
Number of fields defined on the project.
Materialization state: up_to_date, updating, or error.
ISO 8601 timestamp when the project was created.
ISO 8601 timestamp when the project was last updated.
{
"data": [
{
"id": 42,
"name": "Q1 Pipeline",
"record_count": 1280,
"field_count": 12,
"materialization_status": "up_to_date",
"created_at": "2026-01-15T10:30:00.000000Z",
"updated_at": "2026-03-01T14:22:00.000000Z"
}
]
}
Errors
| Status | Reason |
|---|
401 | Missing or invalid API key |
403 | API key does not belong to this workspace |