curl --request GET \
--url https://api.shipbob.com/2025-07/fulfillment-center \
--header 'Authorization: Bearer <token>'
[
{
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "[email protected]",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
}
]
Authentication using Personal Access Token (PAT) token
Success
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/2025-07/fulfillment-center \
--header 'Authorization: Bearer <token>'
[
{
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "[email protected]",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
}
]