## Get a project

**get** `/projects/{projectId}`

Returns metadata for a single project when it is accessible to the authenticated public API key. Missing and inaccessible projects both return 404.

### Path Parameters

- `projectId: string`

  Project identifier

### Returns

- `created_at: number`

- `last_modified: number`

- `name: string`

  Project name

- `origin: string`

  Project origin

- `project_id: string`

  Project identifier

- `workspace_id: string`

  Workspace identifier

### Example

```http
curl https://app.flora.ai/api/v1/projects/$PROJECT_ID \
    -H "Authorization: Bearer $FLORA_API_KEY"
```

#### Response

```json
{
  "created_at": 0,
  "last_modified": 0,
  "name": "Spring Campaign",
  "origin": "api",
  "project_id": "prj_abc123",
  "workspace_id": "ws_abc123"
}
```
