⚠️ ShipStation API V2 Is Now Available ⚠️

Use the content on this site if you need API V1 documentation only.

If you need documentation about the V2 endpoints available with ShipStation's Shipping API or Inventory API add-ons, go to our V2 API developer portal at https://docs.shipstation.com/.

Get Warehouse

Returns a list of active Ship From Locations (formerly known as warehouses) on the ShipStation account.

NOTE In the API, the endpoint is called warehouse, but the process actually affects Ship From locations in the UI on the application side of operations.

Example Request

GET /warehouses/warehouseId HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__
Name Data Type Description
warehouseId number A unique ID generated by ShipStation and assigned to each Ship From Location (formerly known as a warehouse).

Optional

Example Response

{
  "warehouseId": 12345,
  "warehouseName": "API Ship From Location",
  "originAddress": {
    "name": "API Warehouse",
    "company": "ShipStation",
    "street1": "2815 Exposition Blvd",
    "street2": null,
    "street3": null,
    "city": "Austin",
    "state": "TX",
    "postalCode": "78703",
    "country": "US",
    "phone": "512-555-5555",
    "residential": true,
    "addressVerified": null
  },
  "returnAddress": {
    "name": "API Ship From Location",
    "company": "ShipStation",
    "street1": "2815 Exposition Blvd",
    "street2": null,
    "street3": null,
    "city": "Austin",
    "state": "TX",
    "postalCode": "78703",
    "country": "US",
    "phone": "512-555-5555",
    "residential": null,
    "addressVerified": null
  },
  "createDate": "2015-07-02T08:38:31.4870000",
  "isDefault": true
}