Cart.com Order Addresses API

The Order Addresses API from Cart.com — 2 operation(s) for order addresses.

Operations 4

GET /order_addresses Get Order Addresses #
POST /order_addresses Create an Order Address #
PUT /order_addresses/{id} Update an Order Address #
DELETE /order_addresses/{id} Delete an Order Address #

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-order-addresses-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-order-addresses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Online Store Order Addresses API
  version: '1.0'
  description: Online Store API
servers:
- url: https://www.yoursite.com/api/v1
  description: ''
security:
- X-AC-Auth-Token: []
tags:
- name: Order Addresses
paths:
  /order_addresses:
    get:
      summary: Get Order Addresses
      tags:
      - Order Addresses
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_count:
                    type: integer
                  order_addresses:
                    type: array
                    items:
                      $ref: '#/components/schemas/order_addresses'
      operationId: get-order_addresses
      description: Gets an array of order addresses.
    post:
      summary: Create an Order Address
      operationId: post-order_addresses
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/order_addresses'
      tags:
      - Order Addresses
      description: Creates an order address.
      requestBody:
        content:
          application/json:
            schema:
              description: ''
              type: object
              x-examples:
                example-1:
                  customer_id: 107
                  company: ''
                  address_line_1: 123 Test St
                  address_line_2: ''
                  city: Beaumont
                  state: Texas
                  country: United States
                  postal_code: '77706'
                  phone: '3333333333'
                  alternate_phone: ''
                  fax: ''
                  comments: ''
                  first_name: Test
                  last_name: Person
                  address_type: Default
              properties:
                customer_id:
                  type: integer
                company:
                  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
                alternate_phone:
                  type: string
                fax:
                  type: string
                comments:
                  type: string
                first_name:
                  type: string
                last_name:
                  type: string
                address_type:
                  type: string
                state_code:
                  type: string
                country_code:
                  type: string
              required:
              - customer_id
            examples:
              Example:
                value:
                  customer_id: 107
                  company: ''
                  address_line_1: 123 Test St
                  address_line_2: ''
                  city: Beaumont
                  state: Texas
                  country: United States
                  postal_code: '77706'
                  phone: '3333333333'
                  alternate_phone: ''
                  fax: ''
                  comments: ''
                  first_name: Test
                  last_name: Person
                  address_type: Default
                  state_code: TX
                  country_code: US
  /order_addresses/{id}:
    parameters:
    - schema:
        type: string
      name: id
      in: path
      required: true
      description: The ID of the `order_address`
    put:
      summary: Update an Order Address
      operationId: put-order_addresses-id
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/order_addresses'
      description: 'Updates an order address. '
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/order_addresses'
      tags:
      - Order Addresses
    delete:
      summary: Delete an Order Address
      operationId: delete-order_addresses-id
      responses:
        '200':
          description: OK
        '404':
          $ref: '#/components/responses/404'
      tags:
      - Order Addresses
      description: Deletes an Order Address.
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:
    order_addresses:
      type: object
      properties:
        id:
          type: integer
        customer_id:
          type: integer
        company:
          type: string
        address_line_1:
          type: string
        address_line_2:
          type: string
        city:
          type: string
        state:
          type: string
        postal_code:
          type: integer
        country:
          type: string
        phone:
          type: string
        alternate_phone:
          type: string
        fax:
          type: string
        comments:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        address_type:
          type: string
        state_code:
          type: string
        country_code:
          type: string
  securitySchemes:
    X-AC-Auth-Token:
      name: X-AC-Auth-Token
      type: apiKey
      in: header