Skip to main content
Returns metadata and field definitions for a single project.

Request

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

Response

data
object
Project details.
{
  "data": {
    "id": 42,
    "name": "Q1 Pipeline",
    "record_count": 1280,
    "materialization_status": "up_to_date",
    "fields": [
      {
        "id": 101,
        "name": "Deal Name",
        "type": "string"
      }
    ],
    "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
404Project not found in this workspace