Get all fulfillment centers

Overview

The Get all fulfillment centers API retrieves fulfillment centers (also known as ship nodes) information on your account.


Endpoint

GET https://marketplace.walmartapis.com/v3/settings/shipping/shipnodes

Function

This API helps you:

  • View configured fulfillment centers (physical and third-party-logistics (3PL))
  • Check fulfillment center status (ACTIVE or INACTIVE)
  • Find supported shipping services
  • Review postal address information
  • Retrieve carrier configurations for two-day delivery
  • (Optional) Retrieve calendar day configurations (processing schedule, cutoff times, and additional days off)

Sample request

curl --request GET \ --url 'https://marketplace.walmartapis.com/v3/settings/shipping/shipnodes?includeCalendarDayConfiguration=false' \ --header 'accept: application/json'
import requests access_token = "<ACCESS_TOKEN>" # replace with a valid OAuth token (if required) url = "https://marketplace.walmartapis.com/v3/settings/shipping/shipnodes"
params = {"includeCalendarDayConfiguration": "false"} headers = { "Accept": "application/json", "Authorization": f"Bearer {access_token}",
} resp = requests.get(url, headers=headers, params=params, timeout=30) print("Status:", resp.status_code)
print(resp.text)
resp.raise_for_status()

Modify your code

Add authentication header

Include a valid OAuth access token:

--header "Authorization: Bearer <ACCESS_TOKEN>"

If your integration requires additional headers (such as consumer ID, correlation ID, or other Marketplace headers), include them accordingly.


Sample response

Sample 1 Basic fulfillment center information

[ { "shipNode": "99351656957153281", "nodeType": "3PL", "shipNodeName": "MP_Deliverr", "status": "INACTIVE", "timeZone": "EST", "distributorSupportedServices": [ "TWO_DAY_DELIVERY" ], "postalAddress": { "addressLine1": "110 Sutter St. Fl 9", "city": "San Francisco", "state": "CA", "country": "USA", "postalCode": "94104" }, "shippingDetails": [ { "twoDayShipping": [ { "carrierMethodName": "3PL_CARRIER", "carrierMethodType": "GROUND" } ] } ] }, { "shipNode": "84955660770217985", "nodeType": "PHYSICAL", "shipNodeName": "Seller test-distributor", "status": "INACTIVE", "timeZone": "PST", "distributorSupportedServices": [ "TWO_DAY_DELIVERY" ], "customNodeId": "91ab1234", "postalAddress": { "addressLine1": "111 CALIFORNIA SA", "city": "SC GABRIEL", "state": "CA", "country": "USA", "postalCode": "90706" }, "shippingDetails": [ { "twoDayShipping": [ { "carrierMethodName": "FEDEX", "carrierMethodType": "GROUND" } ] } ] }
]

Sample 2 Including calendar day configuration

[ { "shipNode": "99351656957153281", "nodeType": "3PL", "shipNodeName": "MP_Deliverr", "status": "INACTIVE", "timeZone": "EST", "distributorSupportedServices": [ "TWO_DAY_DELIVERY" ], "postalAddress": { "addressLine1": "110 Sutter St. Fl 9", "city": "San Francisco", "state": "CA", "country": "USA", "postalCode": "94104" }, "shippingDetails": [ { "twoDayShipping": [ { "carrierMethodName": "3PL_CARRIER", "carrierMethodType": "GROUND" } ] } ], "calendarDayConfiguration": { "standardProcessingSchedule": { "sunday": { "isWorkingDay": false }, "monday": { "isWorkingDay": true, "cutOffTime": "08:30" }, "tuesday": { "isWorkingDay": true, "cutOffTime": "14:00" }, "wednesday": { "isWorkingDay": true, "cutOffTime": "11:00" }, "thursday": { "isWorkingDay": true, "cutOffTime": "08:30" }, "friday": { "isWorkingDay": true, "cutOffTime": "08:30" }, "saturday": { "isWorkingDay": false } }, "additionalDaysOff": [] } }
]

Results

The response provides:

Fulfillment center metadata

  • shipNode - The unique ID of your fulfillment center
  • nodeType - The type of fulfillment center. For example, PHYSICAL or 3PL
  • shipNodeName - Your fulfillment center’s name
  • status - Whether a fulfillment center is enabled on your account. For example, ACTIVE or INACTIVE
  • timeZone - The time zone at your fulfillment center
  • postalAddress- The delivery address

Shipping services

  • Supported services (e.g., TWO_DAY_DELIVERY)
  • Carrier method details

Optional calendar configuration

  • Working days
  • Cutoff times
  • Additional days off
  • Processing schedule

This information impacts:

  • Order routing
  • Delivery promise calculation
  • Cutoff logic
  • Weekend handling
  • Holiday scheduling

Next steps

The Get shipping template details API gives you specific shipping configurations for a single shipping template.

The Update shipping templates API lets you modify configurations on an existing shipping template, such as shipping methods, regions, transit times, and pricing rules.

The Delete shipping templates API lets you permanently remove existing shipping templates from Walmart Marketplace settings.

The Update fulfillment center API helps you update your existing fulfillment centers (also known as a ship nodes) configuration in Marketplace Settings.

The Create fulfillment center API sets up new fulfillment centers (also known as ship nodes) in Walmart Marketplace Settings.

The Get account level settings API retrieves account-level shipping settings such as calendar day configurations, weekends, and additional days off.

The Update account level settings API allows you to configure account-level calendar settings that impact shipping calculations and delivery promise logic.

The Create account level settings API lets you establish account level calendar configuration for your shipping operations.

The Get all shipping templates API retrieves a list of all shipping templates configured on your account.

The Create shipping templates API allows sellers to create custom shipping templates that define shipping methods, transit times, pricing logic, and geographic coverage.

The Third-party fulfillment center association API allows sellers to activate or update the status of 3PL (third-party logistics) ship nodes associated with your Marketplace account.

The Get shipping configurations API retrieves account-level shipping profile settings associated on your account.

The Get shipping template activation status API allows sellers to retrieve the current activation state of shipping templates at the account level.

The Get coverage for fulfillment centers API retrieves the geographic coverage areas associated with each fulfillment center (ship node) configured under a seller account.

The Get carrier methods API retrieves the list of carrier methods available for use in Marketplace shipping configurations

The Get all third-party fulfillment providers API retrieves all third-party fulfillment providers (3PLs) available on the Walmart marketplace.

The Get partner configurations API retrieves seller-level profile information and system configuration settings associated with a Marketplace partner account.