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

# List Index Notifications

> Paginated list of published index governance notifications, ordered by effective date (most recent first, undated last). Each notification includes a link to its page on the Tilt website. Supports filtering by effective date range, announcement type, affected index, and (via subscribed=true) the indexes your API key is entitled to.



## OpenAPI

````yaml GET /api/v1/indexes/notifications
openapi: 3.0.3
info:
  title: TILT
  version: 0.0.1
servers: []
security: []
paths:
  /api/v1/indexes/notifications:
    get:
      tags:
        - api
      summary: List published notifications
      description: >-
        Paginated list of published index governance notifications, ordered by
        effective date (most recent first, undated last). Each notification
        includes a link to its page on the Tilt website. Supports filtering by
        effective date range, announcement type, affected index, and (via
        subscribed=true) the indexes your API key is entitled to.
      operationId: api_v1_indexes_notifications_list
      parameters:
        - in: query
          name: effective_date_from
          schema:
            type: string
          description: Lower bound on effective_date (inclusive). ISO date (YYYY-MM-DD).
        - in: query
          name: effective_date_to
          schema:
            type: string
          description: Upper bound on effective_date (inclusive). ISO date (YYYY-MM-DD).
        - in: query
          name: index_uuid
          schema:
            type: array
            items:
              type: string
          description: UUID of an affected index. Repeat the param to pass multiple values.
        - name: page
          required: false
          in: query
          description: A page number within the paginated result set.
          schema:
            type: integer
        - name: page_size
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - in: query
          name: subscribed
          schema:
            type: boolean
          description: >-
            When true, only return notifications affecting indexes your API key
            is entitled to. Defaults to false (all published notifications).
        - in: query
          name: type
          schema:
            type: array
            items:
              type: string
              enum:
                - corporate_action
                - index_launch
                - methodology
                - policy
                - rebalancing
          description: Announcement type. Repeat the param to pass multiple values.
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExternalNotificationList'
          description: ''
      security:
        - ProAPIToken: []
components:
  schemas:
    PaginatedExternalNotificationList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=4
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=2
        results:
          type: array
          items:
            $ref: '#/components/schemas/ExternalNotification'
    ExternalNotification:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
          readOnly: true
        title:
          type: string
          maxLength: 500
        announcement_type:
          $ref: '#/components/schemas/AnnouncementTypeEnum'
        effective_date:
          type: string
          format: date
          nullable: true
        published_at:
          type: string
          format: date-time
          nullable: true
        url:
          type: string
          readOnly: true
        document_url:
          type: string
          format: uri
          maxLength: 1000
        affected_index_uuids:
          type: array
          items:
            type: string
          readOnly: true
      required:
        - affected_index_uuids
        - announcement_type
        - title
        - url
        - uuid
    AnnouncementTypeEnum:
      enum:
        - corporate_action
        - rebalancing
        - index_launch
        - policy
        - methodology
      type: string
      description: |-
        * `corporate_action` - Corporate Action
        * `rebalancing` - Rebalancing
        * `index_launch` - Index Launch
        * `policy` - Policy
        * `methodology` - Methodology
  securitySchemes:
    ProAPIToken:
      type: apiKey
      in: header
      name: X-Api-Key

````