Cart.com Carts API

The Carts API from Cart.com — 1 operation(s) for carts.

Operations 1

GET /carts Get Carts #

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-carts-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-carts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Carts API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Carts
paths:
  /carts:
    get:
      summary: Get Carts
      tags:
      - Carts
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  carts:
                    type: array
                    items:
                      $ref: '#/components/schemas/carts'
      operationId: get-carts
      description: Gets an array of carts.
components:
  schemas:
    carts:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        cart_type:
          type: string
        customer_id:
          type: integer
        is_public:
          type: boolean
        updated_at:
          type: string
        created_at:
          type: string
        store_id:
          type: integer
        session_id:
          type: integer
        discount_total:
          type: integer
        subtotal:
          type: number
        shipping_total:
          type: integer
        handling_total:
          type: integer
        tax_total:
          type: integer
        grand_total:
          type: number
        tax_rate:
          type: integer
        additional_fees:
          type: integer
        discounted_shipping_total:
          type: integer
        region_markup_amount:
          type: number
        non_shipping_discount:
          type: integer
        gift_certificate_discount:
          type: number
        coupon_code:
          type: string
        associated_order_id:
          type: integer
        shipping_estimate_city:
          type: string
        shipping_estimate_state_code:
          type: string
        shipping_estimate_postal_code:
          type: string
        shipping_estimate_country_code:
          type: string
        is_shipping_billed_to_account:
          type: boolean
        customer_payment_method_id:
          type: integer
        payment_method_id:
          type: integer
        is_payment_cart_only:
          type: boolean
        lookup_key:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header