# Archive a keyword

```http
POST https://api.synup.com/api/v4/locations/keywords/archive
```

This API removes a keyword from the list of tracked keywords for a specific location by archiving it.

Source: https://developer.synup.com/api/rankings/archive-a-keyword

## Request body

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | required | Keyword ID to archive |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/locations/keywords/archive' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '""'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `400` | Bad Request |
| `401` | Unauthorized |
