# Create a Project

<mark style="color:green;">`POST`</mark> `/:workspace/projects`

Create a project in a workspace.

**Example Request**

```bash
curl -X POST "https://api.roboflow.com/my-workspace/projects?api_key=$ROBOFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Sharks Dataset",
    "type": "object-detection",
    "annotation": "sharks",
    "license": "MIT"
  }'
```

**Body**

<table><thead><tr><th width="160">Name</th><th width="120">Type</th><th>Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>name</code></td><td>string</td><td>Display name for the project. The URL slug is auto-generated from this.</td><td>true</td></tr><tr><td><code>type</code></td><td>string</td><td>Project type. One of <code>object-detection</code>, <code>single-label-classification</code>, <code>multi-label-classification</code>, <code>instance-segmentation</code>, <code>semantic-segmentation</code>, <code>keypoint-detection</code>.</td><td>true</td></tr><tr><td><code>annotation</code></td><td>string</td><td>Annotation group - a noun describing what's being labeled (e.g. <code>"sharks"</code>, <code>"defects"</code>).</td><td>true</td></tr><tr><td><code>license</code></td><td>string</td><td>License for the project. Required for workspaces that aren't already public. Accepted values: <code>Public Domain</code>, <code>MIT</code>, <code>CC BY 4.0</code>, <code>BY-NC-SA 4.0</code>, <code>OBdL v1.0</code>, <code>Private</code> (paid plans only).</td><td>false</td></tr><tr><td><code>group</code></td><td>string</td><td>Id of a project folder to place this project in. See <a href="/pages/Z7DMp1y26Cub2TUTr4v3">Manage Project Folders</a>.</td><td>false</td></tr></tbody></table>

**Example Response**

```json
{
    "id": "my-workspace/sharks-dataset",
    "type": "object-detection",
    "name": "Sharks Dataset",
    "created": 1688739471567,
    "updated": 1688739471567,
    "images": 0,
    "unannotated": 0,
    "annotation": "sharks",
    "versions": 0,
    "public": false,
    "splits": {},
    "colors": {},
    "classes": {},
    "icon": null
}
```

Required scope: `project:create`.

## SDK and CLI equivalents

* SDK: see [Create a Project (SDK)](/developer/python-sdk/create-a-project.md).
* CLI: see [Create a Project (CLI)](/developer/command-line-interface/create-a-project.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.roboflow.com/developer/rest-api/create-a-project.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
