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": "2469d62c-24af-40bc-8a87-15c9f220d79a",
      "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": "a635c45a-b484-4e3d-8f1e-0118e36205cb",
      "shipping_zone": "98df3a9f-7f37-45f4-8236-eceff7670cec",
      "created_at": 1770234900,
      "updated_at": 1770234900
    }
  ]
}

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.