Here is an example for a quotation call for a national shipment, with the minimum request parameters:

curl --request POST \
     --url https://api.cargoboard.com/v1/quotations \
     --header 'Content-Type: application/json' \
     --header 'X-API-KEY: YOUR API KEY HERE' \
     --data '
{
     "product": "STANDARD",
     "shipper": {
          "address": {
               "postCode": "10115",
               "countryCode": "DE",
               "city": "Berlin"
          },
          "pickupOn": "2022-02-03"
     },
     "consignee": {
          "address": {
               "countryCode": "DE",
               "postCode": "33100",
               "city": "Paderborn"
          }
     },
     "lines": [
          {
               "unitQuantity": 1,
               "unitPackageType": "EP",
               "content": "furniture",
               "unitLength": 120,
               "unitWidth": 80,
               "unitHeight": 120,
               "unitWeight": 200
          }
     ]
}
'

Here is the response:

{
  "data": {
    "price": {
      "amount": 64.59,
      "currency": "EUR"
    },
    "pickupAtFrom": "2022-02-02T08:00:00Z",
    "pickupAtUntil": "2022-02-02T16:00:00Z",
    "deliveryOn": {
      "earliest": "2022-02-04",
      "latest": "2022-02-07"
    },
    "runtime": {
      "daysMin": 1,
      "daysMax": 4
    },
    "quotationId": "ckywrd1oe8235728y73e6y51ivo",
    "product": "STANDARD"
  },
  "links": [
    {
      "rel": "self",
      "method": "POST",
      "description": "Get a quotation.",
      "href": "https://api.cargoboard.com/quotation"
    },
    {
      "rel": "orderSTANDARD",
      "method": "POST",
      "description": "Create an order with STANDARD product based on the quotation.",
      "href": "https://api.cargoboard.com/quotation/book/TESTTESTTEST"
    }
  ]
}