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

# List the catalog

> List every entry in the project's preference **catalog**. The project is taken from the API key. Requires a `Full access` key.

List every entry in your project's preference **catalog** — the project-level rules that declare which `(target, medium)` pairs your project may send and the default a recipient inherits. The project is taken from the API key.

This is distinct from a [recipient's own preferences](/api-reference/endpoint/recipients/preferences/list-preferences). To manage the catalog from the dashboard instead, go to **Bodhveda Console > Preferences**.


## OpenAPI

````yaml GET /preferences
openapi: 3.0.3
info:
  title: Bodhveda Notifications API
  version: '1.0'
  description: API for sending notifications to recipients or broadcasting to all.
servers: []
security: []
paths:
  /preferences:
    get:
      tags:
        - Project Preferences
      summary: List the project preference catalog
      description: >-
        List every entry in the project's preference **catalog**. The project is
        taken from the API key. Requires a `Full access` key.
      operationId: listProjectPreferences
      responses:
        '200':
          description: The project's catalog.
          content:
            application/json:
              examples:
                Catalog:
                  summary: Catalog Response
                  value:
                    data:
                      - id: 12
                        project_id: 1
                        target:
                          channel: digest
                          topic: none
                          event: sent
                        medium: email
                        default_enabled: true
                        label: Daily digest
                        created_at: '2025-11-07T05:31:56Z'
                        updated_at: '2025-11-07T05:31:56Z'
      security:
        - BearerAuthWithAPIKeyWithFullAcessScope: []
components:
  securitySchemes:
    BearerAuthWithAPIKeyWithFullAcessScope:
      type: http
      scheme: bearer
      bearerFormat: APIKey
      description: >-
        Bearer authentication header of the form `Bearer bv_xxxxxxxxx`, where
        `bv_xxxxxxxxx` is your **API Key** with `Full access` scope.

````