Get a shipping table
GET
/shops/{shop_id}/shipping_tables/{id}Authorization
AuthorizationBearer token (JWT) · headerrequiredPath parameters
shop_idintegerrequiredidintegerrequiredResponses
200Shipping table with rates
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/shipping_tables/1" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.onbolder.com/v2/shops/1/shipping_tables/1", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.onbolder.com/v2/shops/1/shipping_tables/1",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"id": 1,
"name": "Standard Domestic",
"currency": "USD",
"rows": [
{
"from_weight": 0,
"to_weight": 1000,
"price": 5.99
}
]
}