Skip to main content
GET
/
1.0
/
shippingmethod
Get shipping methods
curl --request GET \
  --url https://api.shipbob.com/1.0/shippingmethod \
  --header 'Authorization: Bearer <token>'
[
  {
    "active": true,
    "default": true,
    "id": 0,
    "name": "string",
    "service_level": {
      "id": 0,
      "name": "string"
    }
  }
]
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

Query Parameters

Page
number<int32>

Page of orders to get

Required range: 0 <= x <= 2147483647
Limit
number<int32>

Amount of records per page to request

Required range: 1 <= x <= 250

Response

Success

active
boolean

Indicates if the shipping method is active

default
boolean

Indicates the shipping method is a ShipBob default shipping method.

id
integer<int32>

Unique id for shipping method.

name
string | null

Name of the ship method as selected by the merchant and saved in ShipBob’s database (i.e. “ground”). Corresponds to the shipping_method field in the Orders API.

service_level
object