Skip to main content
GET
/
api
/
public
/
community
/
board
/
tags
List Discussion Tags
curl --request GET \
  --url https://spaces.nexudus.com/api/public/community/board/tags \
  --header 'Authorization: Basic <encoded-value>'

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 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

GET /api/public/community/board/tags
Authorization: Bearer {token}

TypeScript Integration

import endpoints from '@/api/endpoints'

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