Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

List shipping tables

Returns shipping rate tables configured for the shop.

GET/shops/{shop_id}/shipping_tables
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
shop_idintegerrequired
Responses
200Shipping tables list
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/shipping_tables" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "_class": [
    "results",
    "shippingTables"
  ],
  "total_items": 1,
  "_embedded": {
    "items": [
      {
        "id": 1,
        "name": "Standard Domestic",
        "currency": "USD"
      }
    ]
  }
}