Skip to main content
GET
/
v1
/
shipping_rates
List
curl --request GET \
  --url https://{defaultHost}/v1/shipping_rates \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/shipping_rates"
  },
  "data": [
    {
      "id": "c2d86907-8189-441c-b9fa-1da28ee2eb08",
      "object": "shipping_rate",
      "amount": 750,
      "currency": "usd",
      "max_amount": null,
      "min_amount": 0,
      "max_weight": null,
      "min_weight": 0,
      "rate_type": "flat",
      "weight_unit": "lb",
      "shipping_method": "8b6ee17c-2234-4ff8-95fd-023bf0f1b276",
      "shipping_zone": "a30232ae-35b9-49aa-b8f5-c46dee944361",
      "created_at": 1769675004,
      "updated_at": 1769675004
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

shipping_zone_ids[]
string[]

Only return objects that belong to the given shipping zone.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.