> For the complete documentation index, see [llms.txt](https://docs.microreact.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.microreact.org/api/deleting-projects-via-api.md).

# Deleting Projects via API

## Delete Project

<mark style="color:green;">`POST`</mark> `https://microreact.org/api/projects/bin/`

#### Query Parameters

| Name    | Type   | Description                                                                                       |
| ------- | ------ | ------------------------------------------------------------------------------------------------- |
| project | string | <p>The ID of the project to be deleted (e.g.</p><p><code>gb7RzDg87aJK2yGAqQiai</code></p><p>)</p> |

#### Headers

| Name         | Type   | Description          |
| ------------ | ------ | -------------------- |
| Access-Token | string | An API access token. |

{% tabs %}
{% tab title="200 The value true is returned if the project is deleted successfully." %}

```javascript
true
```

{% endtab %}
{% endtabs %}

### See [API Access Tokens](/api/access-tokens.md)

### Example

{% tabs %}
{% tab title="cURL + Bash" %}

```bash
curl \
  --header "Access-Token: eyJhbGciOiJIUzUxMiJ9..." \
  https://microreact.org/api/projects/bin?project=gb7RzDg87aJK2yGAqQiai
```

{% endtab %}
{% endtabs %}
