Skip to main content
GET
/
v1
/
shipping_rates
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/shipping_rates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3b4e9368-c979-4e1b-8aae-bc7ddc115f72",
  "object": "shipping_rate",
  "calculatable_type": "flat",
  "calculatable": {
    "currency": "usd",
    "amount": 750
  },
  "shipping_method": "879bbe30-ea35-42f2-acf8-dbc23663d191",
  "shipping_zone": "1f4a6c95-1194-4879-a0aa-7c07f4bfdaaa",
  "created_at": 1782485904,
  "updated_at": 1782485904
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

calculatable_type
enum<string>

The kind of the nested calculatable.

Available options:
amount,
flat,
weight,
live
calculatable
object
metadata
object

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.

shipping_zone

Expandable – The associated shipping zone ID.

shipping_method

Expandable – The associated shipping method ID.