Cart.com Microstores API

The Microstores API from Cart.com — 2 operation(s) for microstores.

Operations 4

GET /microstores Get Microstores #
POST /microstores Create a Microstore #
PUT /microstores/{id} Update a Microstore #
DELETE /microstores/{id} Delete a Microstore #

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-microstores-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-microstores-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Microstores API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Microstores
paths:
  /microstores:
    get:
      summary: Get Microstores
      tags:
      - Microstores
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  microstores:
                    type: array
                    items:
                      $ref: '#/components/schemas/microstores'
      operationId: get-microstores
      description: Gets an array of microstores.
    post:
      summary: Create a Microstore
      operationId: post-microstores
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/microstores'
      tags:
      - Microstores
      description: Creates a Microstore.
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  name: TheMikeRoweStore
                  address_line_1: 135 El Pollo Loco
                  address_line_2: ''
                  city: Springfield
                  state: Texas
                  country: United States
                  postal_code: '77334'
                  phone: 431-543-1234
                  fax: ''
                  parent_store_id: 1
                  is_micro_store: true
                  set_cookie: true
                  cookie_expiration: 0
                  logo_image: ''
                  path: /TheMikeRoweStore
              properties:
                name:
                  type: string
                address_line_1:
                  type: string
                address_line_2:
                  type: string
                city:
                  type: string
                state:
                  type: string
                country:
                  type: string
                postal_code:
                  type: string
                phone:
                  type: string
                fax:
                  type: string
                parent_store_id:
                  type: integer
                is_micro_store:
                  type: boolean
                set_cookie:
                  type: boolean
                cookie_expiration:
                  type: number
                activation_date:
                  type: string
                expiration_date:
                  type: string
                logo_image:
                  type: string
                path:
                  type: string
            examples:
              Example:
                value:
                  name: TheMikeRoweStore
                  address_line_1: 135 Test st
                  address_line_2: ''
                  city: Beaumont
                  state: Texas
                  country: United States
                  postal_code: '77701'
                  phone: 431-543-1234
                  fax: ''
                  parent_store_id: 1
                  is_micro_store: true
                  set_cookie: true
                  cookie_expiration: 0
                  activation_date: null
                  expiration_date: null
                  logo_image: ''
                  path: /TheMikeRoweStore
  /microstores/{id}:
    parameters:
    - schema:
        type: string
      name: id
      in: path
      required: true
      description: The ID of the `microstore`
    put:
      summary: Update a Microstore
      operationId: put-microstores-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/microstores'
      tags:
      - Microstores
      description: 'Updates a microstore. '
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/microstores'
    delete:
      summary: Delete a Microstore
      operationId: delete-microstores-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Microstores
      description: Deletes a microstore.
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:
    microstores:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        address_line_1:
          type: string
        address_line_2:
          type: string
        city:
          type: string
        state:
          type: string
        country:
          type: string
        postal_code:
          type: string
        phone:
          type: string
        fax:
          type: string
        parent_store_id:
          type: integer
        is_micro_store:
          type: boolean
        set_cookie:
          type: boolean
        cookie_expiration:
          type: integer
        activation_date:
          type: string
        expiration_date:
          type: string
        logo_image:
          type: string
        path:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header