ShipMonk Warehouses API

The Warehouses API from ShipMonk — 1 operation(s) for warehouses.

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/shipmonk-warehouses-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

shipmonk-warehouses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ShipMonk Warehouses API
  version: v1.024
  description: The Warehouses surface of the ShipMonk public fulfillment API.
servers:
- url: https://api.shipmonk.com
  description: Once you finish testing on Sandbox, our support team generates you Production API keys and store_id for production. Just write us at api@shipmonk.com and we will handle it.
- url: https://sandbox.shipmonk.dev
  description: 'Sandbox environment is used for preproduction testing. It allows you to play around without worries of corrupting the data. We highly recommend using the Sandbox environment and run tests before going to Production. To get access to the Sandbox, please contact the ShipMonk support team. Note: Sandbox access can only be requested by customers with signed contracts.'
security:
- api_key_header_Api-Key: []
tags:
- name: Warehouses
paths:
  /v1/integrations/warehouses:
    get:
      operationId: get-v1-integrations-warehouses
      parameters:
      - in: query
        name: page
        schema:
          type: integer
          minimum: 1
          maximum: 1000
          default: 1
        required: false
        description: 1-based page number to return. Defaults to 1.
        example: 1
      - in: query
        name: pageSize
        schema:
          type: integer
          minimum: 1
          maximum: 1000
          default: 50
        required: false
        description: Number of results per page. Defaults to a server-configured value; check the response metadata for the effective size.
        example: 10
      - in: query
        name: sortBy
        schema:
          anyOf:
          - $ref: '#/components/schemas/Fulfillment_PublicApiBundle_Enum_Warehouse_WarehouseListSortEnum'
          - type: 'null'
          default: null
        required: false
        description: Field to sort warehouses by (e.g., id, name, identifier). See the schema for allowed values.
      - in: query
        name: sortOrder
        schema:
          anyOf:
          - $ref: '#/components/schemas/Fulfillment_PublicApiBundle_Enum_PublicApiOrdering'
          - type: 'null'
          default: null
        required: false
        description: 'Sort direction: ASC (ascending) or DESC (descending).'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  paginator:
                    $ref: '#/components/schemas/ShipMonk_Api_Output_PaginatorOutput'
                  status:
                    type: integer
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Fulfillment_PublicApiBundle_ApiResource_Warehouse_WarehouseListOutput'
                required:
                - paginator
                - status
                - data
      tags:
      - Warehouses
      security:
      - api_key_header_Api-Key: []
      description: Returns all enabled warehouses for the account associated with your API key. Warehouse IDs and identifiers are required across various endpoints and can be included in query parameters to filter results.
      summary: Retrieve List of Warehouses
components:
  schemas:
    Fulfillment_PublicApiBundle_Enum_Warehouse_WarehouseListSortEnum:
      type:
      - string
      enum:
      - name
      - id
      title: Warehouse List Sort Enum
    Fulfillment_PublicApiBundle_ApiResource_Address_AddressDetailOutput:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        company:
          type:
          - string
          - 'null'
        street1:
          type:
          - string
          - 'null'
        street2:
          type:
          - string
          - 'null'
        street3:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        postal_code:
          type:
          - string
          - 'null'
        phone:
          type:
          - string
          - 'null'
        residential:
          type: boolean
        verified:
          type: boolean
        country:
          type:
          - string
          - 'null'
      required:
      - name
      - company
      - street1
      - street2
      - street3
      - city
      - state
      - postal_code
      - phone
      - residential
      - verified
      - country
      title: Address Detail Output
    ShipMonk_Api_Output_PaginatorOutput:
      type: object
      properties:
        total:
          type: integer
        pages:
          type: integer
        page:
          type: integer
      required:
      - total
      - pages
      - page
      title: Paginator Output
    Fulfillment_PublicApiBundle_ApiResource_Warehouse_WarehouseListOutput:
      type: object
      properties:
        id:
          description: Unique numeric identifier of the warehouse.
          type: integer
        identifier:
          description: Short warehouse code (e.g., CA1) used as a stable, human-readable reference.
          type: string
        name:
          description: Display name of the warehouse.
          type: string
        timezone:
          description: IANA time zone of the warehouse location (e.g., America/Los_Angeles).
          type: string
        warehouse_wms_type:
          description: Warehouse management system backing this warehouse.
          type: string
        enabled:
          description: Whether the warehouse is currently active and accepting shipments.
          type: boolean
        address:
          description: Physical address of the warehouse.
          $ref: '#/components/schemas/Fulfillment_PublicApiBundle_ApiResource_Address_AddressDetailOutput'
      required:
      - id
      - identifier
      - name
      - timezone
      - warehouse_wms_type
      - enabled
      - address
      title: Warehouse List Output
    Fulfillment_PublicApiBundle_Enum_PublicApiOrdering:
      type:
      - string
      enum:
      - DESC
      - ASC
      title: Ordering
  securitySchemes:
    api_key_header_Api-Key:
      type: apiKey
      in: header
      name: Api-Key