# List all tags

```http
GET https://api.synup.com/api/v4/tags
```

This API retrieves all tags associated with the authenticated account. Tags serve as labels that help organize and filter locations.

**Response Includes:**
- Tag ID (Unique identifier)
- Tag Name (Label used for categorization)

Source: https://developer.synup.com/api/organizing-locations/list-all-tags

## Example request

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

## Responses

| Status | Description |
| --- | --- |
| `200` | Successfully retrieved list of tags |
| `401` | Unauthorized - Authentication credentials are missing or invalid |
| `403` | Forbidden - User doesn't have permission to access tags |
| `500` | Internal server error |
