Cart.com Manufacturers API

The Manufacturers API from Cart.com — 2 operation(s) for manufacturers.

Operations 4

GET /manufacturers Get Manufacturers #
POST /manufacturers Create a Manufacturer #
PUT /manufacturers/{id} Update a Manufacturer #
DELETE /manufacturers/{id} Delete a Manufacturer #

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-manufacturers-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-manufacturers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Manufacturers API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Manufacturers
paths:
  /manufacturers:
    get:
      summary: Get Manufacturers
      tags:
      - Manufacturers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  manufacturers:
                    type: array
                    items:
                      $ref: '#/components/schemas/manufacturers'
      operationId: get-manufacturers
      description: Gets an array of manufacturers.
    post:
      summary: Create a Manufacturer
      operationId: post-manufacturers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/manufacturers'
      tags:
      - Manufacturers
      description: 'Creates a manufacturer. '
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  name: Cart.com
                  description: ''
                  is_hidden: false
                  sort_order: null
                  manufacturer_logo_url: /Shared/images/cart.png
                  page_title: ''
                  keywords: ''
                  meta_description: ''
                  url_rewrite: /cartcom.aspx
                  head_tags: ''
                  brand_code: ''
              properties:
                name:
                  type: string
                description:
                  type: string
                is_hidden:
                  type: boolean
                sort_order:
                  type: integer
                manufacturer_logo_url:
                  type: string
                page_title:
                  type: string
                keywords:
                  type: string
                meta_description:
                  type: string
                url_rewrite:
                  type: string
                head_tags:
                  type: string
                brand_code:
                  type: string
            examples:
              Example:
                value:
                  name: Cart.com
                  description: ''
                  is_hidden: false
                  sort_order: 1
                  manufacturer_logo_url: /Shared/images/cart.png
                  page_title: ''
                  keywords: ''
                  meta_description: ''
                  url_rewrite: /cartcom.aspx
                  head_tags: ''
                  brand_code: ''
  /manufacturers/{id}:
    parameters:
    - schema:
        type: integer
      name: id
      in: path
      required: true
      description: The ID of the `manufacturer`
    put:
      summary: Update a Manufacturer
      operationId: put-manufacturers-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/manufacturers'
      tags:
      - Manufacturers
      description: Updates a manufacturer.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/manufacturers'
    delete:
      summary: Delete a Manufacturer
      operationId: delete-manufacturers-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Manufacturers
      description: Deletes a manufacturer.
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:
    manufacturers:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        description:
          type: string
        is_hidden:
          type: boolean
        sort_order:
          type: integer
        manufacturer_logo_url:
          type: string
        page_title:
          type: string
        keywords:
          type: string
        meta_description:
          type: string
        url_rewrite:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
        head_tags:
          type: string
        brand_code:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header