# Get Project Details

## Get project details.

<mark style="color:blue;">`GET`</mark> `https://autogon.ai/api/v1/engine/project/{app_id}/`

Returns details for the specified project by it's App ID

#### Path Parameters

| Name                                      | Type   | Description                                |
| ----------------------------------------- | ------ | ------------------------------------------ |
| app\_id<mark style="color:red;">\*</mark> | string | The `app_id` of the current project (UUID) |

#### Headers

| Name                                        | Type   | Description    |
| ------------------------------------------- | ------ | -------------- |
| X-AUG-KEY<mark style="color:red;">\*</mark> | String | YOUR\_API\_KEY |

{% tabs %}
{% tab title="200: OK Project Details" %}

```javascript
{
    "id": 0,
    "app_id": "",
    "project_name": "",
    "project_description": "",
    "project_compiled_models": null,
    "updated_at": "",
    "created_at": ""
}
```

{% endtab %}

{% tab title="400: Bad Request Project Not Found" %}

```json
{
    "status": "false", 
    "message": "Project does not exist"
}
```

{% endtab %}
{% endtabs %}
