# List Keywords

```http
GET https://api.synup.com/api/v4/locations/{locationId}/keywords
```

This API retrieves all keywords associated with a specific location.

**Behavior:**
- Returns a complete list of keywords linked to the location.
- Includes unique keyword IDs and names.

Source: https://developer.synup.com/api/rankings/list-keywords

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `locationId` | string | required | Base64 encoded ID of the location to fetch keywords for |

## Example request

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

## Responses

| Status | Description |
| --- | --- |
| `200` | Successfully retrieved keywords |
| `400` | Invalid location ID |
| `401` | Unauthorized access |
