Skip to main content
GET
/
v1
/
shipping_methods
List
curl --request GET \
  --url https://{defaultHost}/v1/shipping_methods \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/shipping_methods"
  },
  "data": [
    {
      "id": "ed9da438-d8fe-4da0-9f0f-a9f59ff85fad",
      "object": "shipping_method",
      "description": "Deliver within 1-2 days",
      "name": "Express",
      "created_at": 1769675003,
      "updated_at": 1769675003
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.