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

# Get Notification Feed

> Returns recent context alerts generated by the server-side notification system. Use the `since` parameter for incremental polling.



## OpenAPI

````yaml get /v1/notifications/feed
openapi: 3.0.0
info:
  description: >-
    REST API for accessing and managing your Nex data. Generate API keys from
    the Nex web UI and use them to authenticate requests.
  title: Nex Developer API
  contact: {}
  version: '1.0'
servers:
  - url: https://app.nex.ai/api/developers
security: []
paths:
  /v1/notifications/feed:
    get:
      tags:
        - Notifications
      summary: Get Notification Feed
      description: >-
        Returns recent context alerts generated by the server-side notification
        system. Use the `since` parameter for incremental polling.
      operationId: getNotificationFeed
      parameters:
        - description: 'Maximum number of notifications to return (default: 20, max: 50)'
          name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
        - description: >-
            Only return notifications after this ISO 8601 timestamp (for
            incremental polling)
          name: since
          in: query
          required: false
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: List of notification feed items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/developer.NotificationFeedResponse'
        '400':
          description: Bad request - Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httpx.APIError'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httpx.APIError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httpx.APIError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    developer.NotificationFeedResponse:
      type: object
      properties:
        items:
          type: array
          description: List of notification feed items
          items:
            $ref: '#/components/schemas/developer.NotificationFeedItem'
    httpx.APIError:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    developer.NotificationFeedItem:
      type: object
      properties:
        id:
          type: string
          description: Unique notification ID
        type:
          type: string
          description: Notification type (e.g., 'context_alert', 'digest')
        status:
          type: string
          description: Notification status (e.g., 'unread', 'read')
        alert_time:
          type: string
          format: date-time
          description: When the alert condition was detected
        sent_at:
          type: string
          format: date-time
          description: When the notification was sent
        content:
          type: object
          description: Notification content payload
          properties:
            important_items:
              type: array
              description: List of important items flagged by the notification system
              items:
                type: object
            entity_changes:
              type: array
              description: List of entity changes that triggered the notification
              items:
                type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API key for authentication (format: "Bearer YOUR_API_KEY")'
      type: apiKey
      name: Authorization
      in: header

````