---
title: "Search shipping costs"
method: POST
path: "/v3/shipping-costs"
tags: ["Shipping"]
---

# Search shipping costs

`POST /v3/shipping-costs`

Requires the `order:create` scope. Retrieve shipping cost estimates based on origin, destination, courier services, and package weight.

## Request body

- ShippingCostRequest — Schema for requesting shipping cost
  - `courier_codes` string[], required — List of courier codes
  - `location_id` integer, required — ID of the destination location
  - `postal_code` string — Postal code of the destination
  - `warehouse_id` integer, required — ID of the warehouse
  - `weight` integer, required — Weight of the shipment in grams

## Response `200`

Products list

- SearchShippingCostsResponseBody — Non-paginated list payload for v3.
  - `data` ShippingCostResult[], required
    - `cost` number, float, required — Cost of the shipment
    - `cost_source` string, required — Source of the cost
    - `courier_service` object, required
      - `code` string — Code for the courier service
      - `courier` object
        - `code` string — Courier code
        - `courier_type` 'instant' | 'cashless' | 'standard' — Type of the courier
        - `id` integer — Courier ID
        - `name` string — Courier name
      - `id` integer — Courier Service ID
      - `name` string — Name of the courier service
    - `etd` string, required — Estimated time of delivery
    - `weight` integer, required — Weight of the shipment in grams
  - `is_paginated` false, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/scalev/apis/nexus-commerce-api.md) · [All operations](https://skmtc.net/scalev/apis/nexus-commerce-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scalev/nexus-commerce-api/revisions/730030bd6477/schema)
