Skip to main content
GET
/
api
/
public
/
announcements
/
active
Active Announcements
curl --request GET \
  --url https://spaces.nexudus.com/api/public/announcements/active \
  --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.

Active Announcements

Returns all announcements that are currently active and visible to members. Used to display notification banners or announcement widgets on the dashboard.

Authentication

Requires a valid customer bearer token.

Response

Returns an array of active announcement objects.

Examples

Fetch active announcements

GET /api/public/announcements/active
Authorization: Bearer {token}

TypeScript Integration

import endpoints from '@/api/endpoints'

const response = await httpClient.get(endpoints.announcements.active)