List Shipping Methods
GET/api/v2/shipping-methods
Returns a paginated list of the shipping methods configured on the account, each with its carrier, delivery window and tracking-link availability.
Authentication: Requires Bearer token.
Filters
filter[search]— matches id (exact), method name, full name, type, or carrier namefilter[shipping_carrier_id]— exact carrier idfilter[has_tracking]—truereturns only methods whose carrier has a tracking link,falseonly those withoutfilter[archived]— omit for active only,onlyfor archived only,allfor both
Sorts — sort accepts id, name, method_name, full_name, min_business_days, max_business_days, type, created_at, updated_at. Prefix with - for descending. Default: -id.
Pagination — page and per_page (default 10). Pass per_page=-1 to return every method on a single page.
is_rate_shop marks a method that carries no service instruction: when an order using it is sent to a fulfillment provider, no carrier or service is named and the provider selects the carrier itself (rate shop).
settings:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Request
Responses
- 200
- 401
- 403
- 429
OK
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.