Shipper · PricingBeta

Pricing & Quote API

Returns a priced quote for a point-to-point lane, combining a live market reference price with Betakom's margin configuration. BETA: this endpoint currently authenticates with a single shared API key supplied in the request body — per-partner keys, scopes and usage metering are on the roadmap. Treat the key as a secret and do not embed it in client-side code.

Umgebung
https://api.betakom.de
Diese API befindet sich in der Beta. Sie authentifiziert derzeit über einen gemeinsamen API-Schlüssel – partnerindividuelle Schlüssel, Scopes und Ratenbegrenzungen sind geplant. Binden Sie den Schlüssel nicht im Client-Code ein.
POST/api/v1/public/freight-quotes

Request a freight quote for a lane

Body-Parameter

FieldTypeRequiredDescription
loadingLocationstringrequiredFormat "postalCode city, countryCode", e.g. "10115 Berlin, DE".
unloadingLocationstringrequiredFormat "postalCode city, countryCode", e.g. "80331 Munich, DE".
weightnumberrequiredCargo weight in kg (> 0).
lengthnumberoptionalCargo length in metres — improves vehicle-type selection.
accessApiKeystringrequiredYour shared Betakom freight-quotes API key.
Request
{
  "loadingLocation": "10115 Berlin, DE",
  "unloadingLocation": "80331 Munich, DE",
  "weight": 850,
  "length": 2.4,
  "accessApiKey": "YOUR_FREIGHT_QUOTES_API_KEY"
}
  • BETA: single shared API key; no per-partner keys or rate limits yet.
  • GET /api/v1/public/freight-quotes returns a self-describing schema for this endpoint.
  • Errors: 400 (missing/invalid fields), 401 (invalid key), 404 (no market price for the lane).