Cart.com Custom Shipping Methods API

The Custom Shipping Methods API from Cart.com — 2 operation(s) for custom shipping methods.

Operations 4

GET /custom_shipping_methods Get Custom Shipping Methods #
POST /custom_shipping_methods Create a Custom Shipping Method #
PUT /custom_shipping_methods/{id} Update a Custom Shipping Method #
DELETE /custom_shipping_methods/{id} Delete a Custom Shipping Method #

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-custom-shipping-methods-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-custom-shipping-methods-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Custom Shipping Methods API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Custom Shipping Methods
paths:
  /custom_shipping_methods:
    get:
      summary: Get Custom Shipping Methods
      tags:
      - Custom Shipping Methods
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  custom_shipping_methods:
                    type: array
                    items:
                      $ref: '#/components/schemas/custom_shipping_methods'
      operationId: get-custom_shipping_methods
      description: 'Gets an array of custom shipping methods.


        For more information, please see our knowledge base: [Custom Shipping Methods](https://support.americommerce.com/hc/en-us/articles/201905690-Custom-Shipping-Methods).'
    post:
      summary: Create a Custom Shipping Method
      operationId: post-custom_shipping_methods
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/custom_shipping_methods'
      tags:
      - Custom Shipping Methods
      description: 'Creates a custom shipping method.


        For more information, please see our knowledge base: [Custom Shipping Methods](https://support.americommerce.com/hc/en-us/articles/201905690-Custom-Shipping-Methods).'
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  name: Free Shipping
                  is_enabled: true
                  is_default: false
                  markup_type: ''
                  markup_amount: ''
                  description: ''
                  use_base_rate: false
                  is_calculated_method: false
                  admin_only: false
              properties:
                name:
                  type: string
                is_enabled:
                  type: boolean
                is_default:
                  type: boolean
                markup_type:
                  type: string
                markup_amount:
                  type: string
                description:
                  type: string
                use_base_rate:
                  type: boolean
                is_calculated_method:
                  type: boolean
                admin_only:
                  type: boolean
              required:
              - name
            examples:
              Example:
                value:
                  name: Free Shipping
                  is_enabled: true
                  is_default: false
                  markup_type: ''
                  markup_amount: ''
                  description: ''
                  use_base_rate: false
                  is_calculated_method: false
                  admin_only: false
        description: ''
  /custom_shipping_methods/{id}:
    parameters:
    - schema:
        type: integer
      name: id
      in: path
      required: true
      description: The ID of the `custom_shipping_method`
    put:
      summary: Update a Custom Shipping Method
      operationId: put-custom_shipping_methods-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/custom_shipping_methods'
      tags:
      - Custom Shipping Methods
      description: 'Updates a custom shipping method.


        For more information, please see our knowledge base: [Custom Shipping Methods](https://support.americommerce.com/hc/en-us/articles/201905690-Custom-Shipping-Methods).'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/custom_shipping_methods'
    delete:
      summary: Delete a Custom Shipping Method
      operationId: delete-custom_shipping_methods-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Custom Shipping Methods
      description: 'Deletes a custom shipping method.


        For more information, please see our knowledge base: [Custom Shipping Methods](https://support.americommerce.com/hc/en-us/articles/201905690-Custom-Shipping-Methods).'
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:
    custom_shipping_methods:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        is_enabled:
          type: boolean
        is_default:
          type: boolean
        markup_type:
          type: string
        markup_amount:
          type: string
        description:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
        use_base_rate:
          type: boolean
        is_calculated_method:
          type: boolean
        admin_only:
          type: boolean
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header