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

# Get Notification Preferences

> Return current notification preferences. Defaults if no row exists.



## OpenAPI

````yaml /openapi.json get /v1/users/notifications
openapi: 3.1.0
info:
  title: AgentPowers API
  description: Paid marketplace for Claude Code skills and agents
  version: 0.1.0
servers:
  - url: https://api.agentpowers.ai
    description: Production
security: []
paths:
  /v1/users/notifications:
    get:
      tags:
        - users
      summary: Get Notification Preferences
      description: Return current notification preferences. Defaults if no row exists.
      operationId: get_notification_preferences_v1_users_notifications_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreferences'
      security:
        - BearerAuth: []
components:
  schemas:
    NotificationPreferences:
      properties:
        purchase_receipts:
          type: boolean
          title: Purchase Receipts
          default: true
        payout_notifications:
          type: boolean
          title: Payout Notifications
          default: true
        marketing_emails:
          type: boolean
          title: Marketing Emails
          default: false
      type: object
      title: NotificationPreferences
      description: Notification preference settings.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Provide a Clerk JWT or a long-lived CLI token (prefix `ap_cli_`).  Pass
        as `Authorization: Bearer <token>`.

````