Get all merchants shipping methods
curl --request GET \
--url https://api.shipbob.com/2025-07/shipping-method \
--header 'Authorization: Bearer <token>'
[
{
"active": true,
"default": true,
"id": 0,
"name": "string",
"service_level": {
"id": 0,
"name": "string"
}
}
]
Authentication using Personal Access Token (PAT) token
Page of orders to get
0 <= x <= 2147483647
Amount of records per page to request
1 <= x <= 250
Success
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/2025-07/shipping-method \
--header 'Authorization: Bearer <token>'
[
{
"active": true,
"default": true,
"id": 0,
"name": "string",
"service_level": {
"id": 0,
"name": "string"
}
}
]