curl --request GET \
--url https://api.shipbob.com/2025-07/location \
--header 'Authorization: Bearer <token>'
[
{
"abbreviation": "string",
"access_granted": true,
"attributes": [
"string"
],
"id": 0,
"is_active": true,
"is_receiving_enabled": true,
"is_shipping_enabled": true,
"name": "string",
"region": {
"id": 0,
"name": "string"
},
"services": [
{
"address": {
"address1": "string",
"address2": "string",
"city": "string",
"country": "string",
"email": "string",
"name": "string",
"phone_number": "string",
"state": "string",
"zip_code": "string"
},
"enabled": true,
"service_type": "Receiving"
}
],
"timezone": "string"
}
]
Authentication using Personal Access Token (PAT) token
Return all locations the user has access to
Whether the inactive locations should be included or not
Return all the receiving enabled locations
Return all the access granted locations
Success
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/2025-07/location \
--header 'Authorization: Bearer <token>'
[
{
"abbreviation": "string",
"access_granted": true,
"attributes": [
"string"
],
"id": 0,
"is_active": true,
"is_receiving_enabled": true,
"is_shipping_enabled": true,
"name": "string",
"region": {
"id": 0,
"name": "string"
},
"services": [
{
"address": {
"address1": "string",
"address2": "string",
"city": "string",
"country": "string",
"email": "string",
"name": "string",
"phone_number": "string",
"state": "string",
"zip_code": "string"
},
"enabled": true,
"service_type": "Receiving"
}
],
"timezone": "string"
}
]