# Create a New Project

## Creates a new project.

<mark style="color:green;">`POST`</mark> `https://autogon.ai/api/v1/engine/project/`

Creates a new project.

#### Request Body

| Name                                                   | Type   | Description                   |
| ------------------------------------------------------ | ------ | ----------------------------- |
| project\_name<mark style="color:red;">\*</mark>        | string | Unique name of project        |
| project\_description<mark style="color:red;">\*</mark> | String | short description for project |

{% tabs %}
{% tab title="200 Project successfully created" %}

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

{% endtab %}

{% tab title="401 Project already exists" %}

```
{
    "status": "false",
    "message": "This project name already exists"
}
```

{% endtab %}
{% endtabs %}
