Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

Get a shipping table

GET/shops/{shop_id}/shipping_tables/{id}
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
shop_idintegerrequired
idintegerrequired
Responses
200Shipping table with rates
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/shipping_tables/1" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "id": 1,
  "name": "Standard Domestic",
  "currency": "USD",
  "rows": [
    {
      "from_weight": 0,
      "to_weight": 1000,
      "price": 5.99
    }
  ]
}