Skip to main content
GET
/
1.0
/
fulfillmentCenter
Get Fulfillment Centers
curl --request GET \
  --url https://api.shipbob.com/1.0/fulfillmentCenter \
  --header 'Authorization: Bearer <token>'
[
  {
    "address1": "5900 W Ogden Ave",
    "address2": "Suite 100",
    "city": "Cicero",
    "country": "USA",
    "email": "example@example.com",
    "id": 0,
    "name": "Cicero (IL)",
    "phone_number": "555-555-5555",
    "state": "IL",
    "timezone": "Central Standard Time",
    "zip_code": "60804"
  }
]
API 1.0 is deprecated and will be sunset on July 31, 2026. Please migrate to the latest API version. See our Versioning Policy for details.

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Response

Success

address1
string | null

Address line one of the fulfillment center

Example:

"5900 W Ogden Ave"

address2
string | null

Address line two of the fulfillment center

Example:

"Suite 100"

city
string | null

City the fulfillment center is located in

Example:

"Cicero"

country
string | null

Country the fulfillment center is located in

Example:

"USA"

email
string | null

Email contact for the fulfillment center

Example:

"example@example.com"

id
integer<int32>

Unique identifier of the fulfillment center

name
string | null

Name of the fulfillment center

Example:

"Cicero (IL)"

phone_number
string | null

Phone number contact for the fulfillment center

Example:

"555-555-5555"

state
string | null

State the fulfillment center is located in

Example:

"IL"

timezone
string | null

Timezone the fulfillment center is located in

Example:

"Central Standard Time"

zip_code
string | null

Postal code of the fulfillment center

Example:

"60804"