Skip to content
Guides
Fulfillment & ShippingRates
settings:read

List shipping rates

Lists shipping rates with zone search and method, type, or active-state filters.

GET/v1/shipping/rates

Lists shipping rates with zone search and method, type, or active-state filters.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Query Parameters

limit?integer

Maximum number of results to return.

Formatint32
cursor?string

Opaque cursor from the previous response. Omit it on the first page.

search?string

Free-text filter. Which fields it covers depends on the resource.

sortBy?string

Field to sort by. Accepted values depend on the resource.

sortDirection?string

Sort direction: asc or desc.

Value in

  • "asc"
  • "desc"
shippingMethodId?string
isActive?boolean

Only active items.

type?string

Only this type.

Value in

  • "flat"
  • "priceRange"
  • "postalCode"
  • "tableCost"
  • "freeShipping"
  • "weightBased"

Header Parameters

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/shipping/rates" \  -H "Authorization: Bearer <token>"
{  "data": [    {      "id": "7204558912004325301",      "storeId": "7204558912004325301",      "sellerId": "7204558912004325301",      "shippingMethodId": "7204558912004325301",      "type": "flat",      "price": 1,      "currency": "PEN",      "minOrderPrice": 1,      "maxOrderPrice": 1,      "postalCodes": [        "example"      ],      "isActive": false,      "description": "Example description.",      "discountPercentage": 1,      "zoneCode": "example_code",      "minWeight": 1,      "maxWeight": 1,      "minValue": 1,      "maxValue": 1,      "basePrice": 1,      "pricePerKg": 1,      "pricePerUnit": 1,      "taxIncluded": false,      "surcharge": 1,      "metadata": {},      "createdOn": "2026-08-01T15:30:00Z",      "updatedOn": "2026-08-01T15:30:00Z"    }  ],  "hasNextPage": false,  "nextCursor": "example",  "totalCount": 1}