Cart.com Product Pricing API

The Product Pricing API from Cart.com — 2 operation(s) for product pricing.

Business capability
Price List Management BC-440.20

Operations 4

GET /product_pricing Get Product Pricing #
POST /product_pricing Add Product Pricing #
PUT /product_pricing/{id} Update a Product Price #
DELETE /product_pricing/{id} Delete a Product Price #

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-product-pricing-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-product-pricing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Product Pricing API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Product Pricing
paths:
  /product_pricing:
    get:
      summary: Get Product Pricing
      tags:
      - Product Pricing
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: string
                  product_pricing:
                    type: array
                    items:
                      $ref: '#/components/schemas/product_pricing'
              examples:
                example-1:
                  value:
                    total_count: string
                    product_pricing:
                    - id: 0
                      product_id: 0
                      store_id: 0
                      customer_type_id: 0
                      variant_inventory_id: 0
                      sale_type_id: 0
                      start_date: string
                      end_date: string
                      starting_quantity: 0
                      price: 0
                      cost: 0
                      updated_at: string
                      created_at: string
                      price_calculation_id: 0
                      variant_id: 0
                      variant_price_surcharge: string
      operationId: get-product_pricing
      description: Gets an array of product pricing.
    post:
      summary: Add Product Pricing
      operationId: post-product_pricing
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/product_pricing'
      tags:
      - Product Pricing
      description: Add a price to a product.
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  product_id: 24
                  store_id: 1
                  customer_type_id: 24
                  variant_inventory_id: 254
                  sale_type_id: null
                  start_date: ''
                  end_date: ''
                  starting_quantity: 72
                  price: 29.1666
                  cost: 16.6666
                  price_calculation_id: null
                  variant_id: null
                  variant_price_surcharge: ''
              properties:
                product_id:
                  type: integer
                store_id:
                  type: integer
                customer_type_id:
                  type: integer
                variant_inventory_id:
                  type: integer
                sale_type_id:
                  type: integer
                start_date:
                  type: string
                end_date:
                  type: string
                starting_quantity:
                  type: number
                price:
                  type: number
                cost:
                  type: number
                price_calculation_id:
                  type: integer
                variant_id:
                  type: integer
                variant_price_surcharge:
                  type: string
              required:
              - product_id
  /product_pricing/{id}:
    parameters:
    - schema:
        type: integer
      name: id
      in: path
      required: true
      description: The ID of the `product_pricing`
    put:
      summary: Update a Product Price
      operationId: put-product_pricing-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/product_pricing'
      tags:
      - Product Pricing
      description: Updates a product price.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/product_pricing'
    delete:
      summary: Delete a Product Price
      operationId: delete-product_pricing-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Product Pricing
      description: Deletes a product price.
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:
    product_pricing:
      description: ''
      type: object
      x-examples:
        example-1:
          id: 353
          product_id: 53
          store_id: null
          customer_type_id: null
          variant_inventory_id: null
          sale_type_id: null
          start_date: '2020-03-09T00:00:00-05:00'
          end_date: '2022-08-31T00:00:00-05:00'
          starting_quantity: 1
          price: 25
          cost: 0
          updated_at: '2021-09-15T16:27:13.46-05:00'
          created_at: '2021-08-05T10:35:29.82-05:00'
          price_calculation_id: null
          variant_id: null
          variant_price_surcharge: ''
      properties:
        id:
          type: integer
          readOnly: true
        product_id:
          type: integer
        store_id:
          type: integer
        customer_type_id:
          type: integer
        variant_inventory_id:
          type: integer
        sale_type_id:
          type: integer
        start_date:
          type: string
          minLength: 1
        end_date:
          type: string
          minLength: 1
        starting_quantity:
          type:
          - number
          - integer
        price:
          type: number
        cost:
          type: number
        updated_at:
          type: string
          minLength: 1
        created_at:
          type: string
          minLength: 1
        price_calculation_id:
          type: integer
        variant_id:
          type: integer
        variant_price_surcharge:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header