# Remove Labels from Tweets

`POST https://api.tweetsmash.com/v1/labels/remove`

Remove labels from specific tweets.

### Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Authorization` | string | Yes | Your secret API key. Should be provided as a Bearer token. |

### Body parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `tweet_ids` | array | Yes | Array of tweet IDs to remove labels from. |
| `label_name` | string | Yes | Name of the label to remove from the tweets. |

### Response

```json
{
  "status": true,
  "message": "Labels removed from tweets"
}
```

---

Full reference: https://www.tweetsmash.com/api-docs/remove-labels
