Cart.com Price Calculator Rule Modifiers API

The Price Calculator Rule Modifiers API from Cart.com — 2 operation(s) for price calculator rule modifiers.

Operations 4

GET /price_calculator_rule_modifiers Get Price Calculator Rule Modifiers #
POST /price_calculator_rule_modifiers Create a Price Calculator Rule Modifier #
PUT /price_calculator_rule_modifiers/{id} Update a Price Calculator Rule Modifier #
DELETE /price_calculator_rule_modifiers/{id} Delete a Price Calculator Rule Modifier #

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-price-calculator-rule-modifiers-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-price-calculator-rule-modifiers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Price Calculator Rule Modifiers API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Price Calculator Rule Modifiers
paths:
  /price_calculator_rule_modifiers:
    get:
      summary: Get Price Calculator Rule Modifiers
      tags:
      - Price Calculator Rule Modifiers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  price_calculator_rule_modifiers:
                    type: array
                    items:
                      $ref: '#/components/schemas/price_calculator_rule_modifiers'
      operationId: get-price_calculator_rule_modifiers
      description: Gets an array of price calculator rule modifiers.
    post:
      summary: Create a Price Calculator Rule Modifier
      operationId: post-price_calculator_rule_modifiers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/price_calculator_rule_modifiers'
      tags:
      - Price Calculator Rule Modifiers
      description: Create a Price Calculator Rule Modifiers
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  price_calculator_rule_id: 5
                  action: Add
                  value: -2
                  modifier_type: Dollars
                  optional_value: null
                  optional_modifier_type: Dollars
                  sort_order: 0
                  description: ''
                  optional_action: None
              properties:
                price_calculator_rule_id:
                  type: integer
                action:
                  type: string
                value:
                  type: number
                modifier_type:
                  type: string
                optional_value:
                  type: number
                optional_modifier_type:
                  type: string
                sort_order:
                  type: integer
                description:
                  type: string
                optional_action:
                  type: string
              required:
              - price_calculator_rule_id
            examples:
              Example:
                value:
                  price_calculator_rule_id: 5
                  action: Add
                  value: -2
                  modifier_type: Dollars
                  optional_value: 0
                  optional_modifier_type: Dollars
                  sort_order: 0
                  description: ''
                  optional_action: None
  /price_calculator_rule_modifiers/{id}:
    parameters:
    - schema:
        type: integer
      name: id
      in: path
      required: true
      description: The ID of the `price_calculator_rule_modifier`
    put:
      summary: Update a Price Calculator Rule Modifier
      operationId: put-price_calculator_rule_modifier-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/price_calculator_rule_modifiers'
      tags:
      - Price Calculator Rule Modifiers
      description: Updates a price calculator rule modifier.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/price_calculator_rule_modifiers'
    delete:
      summary: Delete a Price Calculator Rule Modifier
      operationId: delete-price_calculator_rule_modifier-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Price Calculator Rule Modifiers
      description: Delete a price calculator rule modifier.
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:
    price_calculator_rule_modifiers:
      type: object
      properties:
        id:
          type: integer
        price_calculator_rule_id:
          type: integer
        action:
          type: string
        value:
          type: integer
        modifier_type:
          type: string
        optional_action:
          type: string
        optional_value:
          type: integer
        optional_modifier_type:
          type: string
        sort_order:
          type: integer
        updated_at:
          type: string
        created_at:
          type: string
        description:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header