Cart.com Notifications API

The Notifications API from Cart.com — 2 operation(s) for notifications.

Operations 4

GET /notifications Get Notifications #
POST /notifications Create a Notification #
PUT /notifications/{id} Update a Notification #
DELETE /notifications/{id} Delete a Notification #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cart-com-notifications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cart-com-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Notifications API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Notifications
paths:
  /notifications:
    get:
      summary: Get Notifications
      tags:
      - Notifications
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  notifications:
                    type: array
                    items:
                      $ref: '#/components/schemas/notifications'
      operationId: get-notifications
      description: 'Returns an array of product notifications. '
    post:
      summary: Create a Notification
      operationId: post-notifications
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notifications'
      tags:
      - Notifications
      description: Creates a product notification.
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  product_id: 86
                  email_address: test@mail.com
                  customer_id: 22
                  notification_frequency_type: Once
                  store_id: 1
                  variant_inventory_id: null
              properties:
                product_id:
                  type: integer
                email_address:
                  type: string
                customer_id:
                  type: integer
                notification_frequency_type:
                  type: string
                store_id:
                  type: integer
                variant_inventory_id:
                  type: integer
            examples:
              Example:
                value:
                  product_id: 86
                  email_address: test@cart.com
                  customer_id: 22
                  notification_frequency_type: Once
                  store_id: 1
                  variant_inventory_id: 123
  /notifications/{id}:
    parameters:
    - schema:
        type: string
      name: id
      in: path
      required: true
      description: The ID of the `notification`
    put:
      summary: Update a Notification
      operationId: put-notifications-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notifications'
      tags:
      - Notifications
      description: Updates a product notification.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/notifications'
        description: ''
    delete:
      summary: Delete a Notification
      operationId: delete-notifications-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Notifications
      description: Deletes a notificaton.
components:
  responses:
    '404':
      description: Resource Not Found
      content:
        application/json:
          schema:
            description: Not Found
            type: object
            x-examples:
              example-1:
                status_code: 404
                message: Not Found
                details: No resource found
            properties:
              status_code:
                type: number
              message:
                type: string
              details:
                type: string
          examples: {}
      headers: {}
  schemas:
    notifications:
      type: object
      properties:
        notification_id:
          type: integer
        product_id:
          type: integer
        email_address:
          type: string
        customer_id:
          type: integer
        notification_frequency_type:
          type: string
        store_id:
          type: integer
        variant_inventory_id:
          type: integer
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header