> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Discussion Tags

> Returns the available tags for discussion board threads.

# List Discussion Tags

Returns all tags that can be applied to discussion board threads. Used to populate tag selectors and filters.

## Authentication

Requires a valid customer bearer token.

## Response

Returns an array of tag strings.

## Examples

### Fetch tags

```http theme={null}
GET /api/public/community/board/tags
Authorization: Bearer {token}
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

const response = await httpClient.get(endpoints.community.board.tags)
```
