Skip to main content
Returns all projects in the workspace, ordered by name.

Request

Authorization
string
required
Bearer token for a workspace API key scoped to this workspace.
workspace
string
required
Workspace slug.
curl "https://app.askgrapple.com/api/v1/workspaces/acme-corp/projects" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

data
array
List of projects in the workspace.
{
  "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

StatusReason
401Missing or invalid API key
403API key does not belong to this workspace