# Get a project

> A project, the member's role in it, and the workflows, apps, and skills inside.

Source: https://docs.generalinput.com/api/projects/get



<Endpoint method="GET" path="/v1/projects/:id" />

<Access scope="projects:manage" />

## Response [#response]

```json
{
  "project": {
    "id": "proj_01HX…",
    "name": "Sales ops",
    "role": "editor",
    "isOwner": false,
    "canEdit": true,
    "counts": { "workflows": 3, "apps": 1, "skills": 2, "files": 5 },
    "…": "…"
  },
  "resources": [
    {
      "id": "wf_01HX…",
      "name": "Daily Digest",
      "description": null,
      "type": "workflow"
    },
    {
      "id": "wf_02AB…",
      "name": "Lead Explorer",
      "description": "…",
      "type": "app"
    },
    {
      "id": "skl_03CD…",
      "name": "gmail-inbox-triage",
      "description": "…",
      "type": "skill"
    }
  ]
}
```

Files are counted here and listed by [list files](/api/projects/list-files).
