---
title: "Get Price Information"
method: POST
path: "/priceinfo"
tags: ["ShipmentApi"]
---

# Get Price Information

`POST /priceinfo`

Provides detailed pricing information for shipments based on specified criteria.

## Request body

- ClientAPIPriceInfoRequestDto
  - `pickupDate` string, date-time — Requested pickup date for the shipment.
  - `senderZipCode` string, nullable — Sender's postal/zip code.
  - `senderCountryPrefix` string, nullable — Sender's country ISO code (e.g., "DK").
  - `cosigneeZipCode` string, nullable — Consignee's postal/zip code.
  - `consigneeCountryPrefix` string, nullable — Consignee's country ISO code (e.g., "DK").
  - `billingUnit` integer, nullable — Billing unit type ID used for pricing the shipment.
  - `shipmentWeight` number, double, nullable — Total weight of the shipment in the specified billing unit.
  - `countOfBillingUnits` number, double, nullable — Number of billing units (e.g., pallets, kilograms).
  - `numberOfCollies` integer, nullable — Total number of packages (collies) in the shipment.
  - `weights` number[], nullable — List of individual package weights. Used when packages have different weights.
  - `dropOffParcelShop` string, nullable — Parcel shop code where the sender will drop off the shipment.
  - `pickupParcelShop` string, nullable — Parcel shop code from which the shipment will be picked up.
  - `allowSaturdayDelivery` boolean, nullable — When true, enables Saturday delivery pricing.
  - `isCargo` boolean, nullable — When true, applies cargo-type pricing rules.
  - `returnDocument` boolean, nullable — When true, includes a return document service in the price calculation.
  - `codAmount` number, double, nullable — Cash-on-delivery amount to collect from the consignee. Decimal numbers must use a dot (.) as the separator (e.g., 1234.56).
  - `exWorks` boolean, nullable — When true, applies ex-works pricing rules.

## Response `200`

OK

- ClientAPIPriceInfoResultDto
  - `status` 'OK' | 'Error' | 'ValidationFailed' — 0 = OK, 1 = Error, 2 = ValidationFailed
  - `validations` ClientAPIValidation[], nullable
    - `code` integer
    - `message` string, nullable
    - `params` object, nullable
  - `error` ClientAPIError
    - `code` integer
    - `message` string, nullable
    - `stackTrace` string, nullable
    - `innerException` ClientAPIError — recursive
    - `validations` ClientAPIValidation[], nullable
      - `code` integer
      - `message` string, nullable
      - `params` object, nullable
    - `messageParams` string[], nullable
    - `payload` JToken[]
  - `traceID` string, nullable
  - `data` CNPriceInfo
    - `unit` CNUnit
      - `unitID` integer, nullable — Internal identifier for the billing unit type.
      - `name` string, nullable — Full name of the billing unit (e.g., "Kilogram").
      - `abbreviatedName` string, nullable — Abbreviated name of the billing unit (e.g., "kg").
      - `description` string, nullable — Description of the billing unit and how it is applied.
    - `count` number, double, nullable — Number of billing units used for pricing (e.g., weight in kg, number of pallets).
    - `numberOfCollies` integer, nullable — Total number of packages (collies) in the shipment.
    - `net` number, double — Net price excluding taxes and fees.
    - `gross` number, double — Gross price including all taxes and fees.
    - `vat` number, double, nullable — VAT amount applied to the shipment.
    - `taxRate` number, double, nullable — Tax rate percentage applied to the shipment price.
    - `shippingFee` number, double, nullable — Additional shipping fee, if applicable.

---

[API](https://skmtc.dev/expressone/apis/client-api.md) · [All operations](https://skmtc.dev/expressone/apis/client-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/expressone/client-api/revisions/2acf7e4a5080/schema)
