> ## Documentation Index
> Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /projects/:projectId

> Retrieve project details including associated workflows.

## Endpoint

```
GET /v1/projects/{projectId}
```

## Request

```bash theme={null}
curl -X GET "http://client-omni-api.argosidentity.com/v1/projects/{projectId}" \
  -H "x-api-key: your-api-key-here"
```

## Response

<ResponseField name="id" type="string" required>
  Unique project identifier (e.g., `proj_nu1t9v31uj1p`)
</ResponseField>

<ResponseField name="name" type="string" required>
  Project name
</ResponseField>

<ResponseField name="status" type="string" required>
  Project status: `SERVICE`, `TRIAL`, or `CLOSED`
</ResponseField>

<ResponseField name="workflows" type="array" required>
  List of workflows associated with this project
</ResponseField>

<ResponseField name="owner" type="object" required>
  Project owner information
</ResponseField>

```json theme={null}
{
  "success": true,
  "data": {
    "id": "proj_nu1t9v31uj1p",
    "name": "Compliance Production",
    "status": "SERVICE",
    "workflows": [
      {
        "id": "wf_nowap27l46b2",
        "name": "KYB Business Verification",
        "createdAt": "2026-01-15T09:00:00Z"
      }
    ],
    "owner": {
      "id": "user_abc123",
      "email": "admin@company.com"
    },
    "createdAt": "2026-01-10T08:00:00Z"
  }
}
```
