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": "ebd369a2-b047-41a2-806f-08d15dacc935",
      "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": "b966c424-544f-4885-bcb2-79e25848e9aa",
      "shipping_zone": "feb2a7bd-367b-4b2f-b8f2-9f062c30260b",
      "created_at": 1767909772,
      "updated_at": 1767909772
    }
  ]
}

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.