> ## 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 currently active announcements for the location.

# 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

```http theme={null}
GET /api/public/announcements/active
Authorization: Bearer {token}
```

## TypeScript Integration

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

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