# List all projects

## Lists all projects.

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

Returns a list of available projects for a specific user.

#### Headers

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

{% tabs %}
{% tab title="200: OK Projects details" %}

```javascript
[
    {
	    "id": 0,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 1,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 2,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 3,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    ...
]
```

{% endtab %}
{% endtabs %}
