# Get voice listings for a location

```http
GET https://api.synup.com/api/v4/locations/{locationId}/voice-assistants
```

This API retrieves all voice assistant listings associated with a specific location.

**Available Voice Assistants:**
- Google Assistant
- Cortana
- Alexa
- Siri
- Bixby

**Response Includes:**
- Sync status – Indicates whether the listing is successfully synced.
- Connection details – Provides integration status with each voice assistant.
- Potential issues – Highlights any errors preventing successful sync.

Source: https://developer.synup.com/api/listings/get-voice-listings-for-a-location

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `locationId` | string | required | The unique identifier of the location |

## Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Content-Type` | string | required |  |

## Example request

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

## Responses

| Status | Description |
| --- | --- |
| `200` | Voice listings retrieved successfully |
| `400` | Bad request - invalid location ID |
| `401` | Unauthorized - invalid or missing API key |
| `403` | Forbidden - insufficient permissions |
| `404` | Location not found |
