Unfortunately, this feature is not supported on mobile devices. For the best experience, please use a computer.

zipmend API (1.0.0)

Documentation of the zipmend api

Download OpenAPI description
Languages
Servers
Mock server
https://docs.zipmend.com/_mock/openapi/
Production server (uses live data)
https://app.zipmend.com/api/v3/
Sandbox server (uses test data)
https://sandbox.zipmend.com/api/v3/

Cities

Informations about cities and zipcodes

Operations

Price

Get price calculated by the

Operations

Generate a price

Request

Generate a price

Bodyapplication/jsonrequired
itemsArray of objects(Item)
loadingsArray of objects(City)required
loadings[].namestring(Name)
loadings[].zip_codestring(ZipCode)
loadings[].countrystring(Country)
unloadingsArray of objects(City)required
unloadings[].namestring(Name)
unloadings[].zip_codestring(ZipCode)
unloadings[].countrystring(Country)
loading_datestring(date)(Date)required
curl -i -X POST \
  -u <username>:<password> \
  https://docs.zipmend.com/_mock/openapi/price \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "quantity": 1,
        "length": 230,
        "width": 120,
        "height": 80,
        "weight": 320
      }
    ],
    "loadings": [
      {
        "zip": "28779",
        "city": "Bremen",
        "country": "DE"
      }
    ],
    "unloadings": [
      {
        "zip": "28779",
        "city": "Bremen",
        "country": "DE"
      }
    ],
    "loading_date": "2024-07-19T08:00:00+01:00"
  }'
Experience it firsthand in the API Explorer!

Responses

Created.

Bodyapplication/json
messagestringrequired
Example:

"Success!"

dataArray of objects(PriceObject)required
data[].vehicle_typeinteger
Example:

11

data[].valuenumber
Example:

407.15

data[].driving_timeinteger
Example:

23575

data[].estimated_loading_timesArray of objects(SpotTimes)
data[].estimated_unloading_timesArray of objects(SpotTimes)
data[].available_extra_servicesArray of objects(ExtraService)
Response
application/json
{ "message": "Success!", "data": [ {}, {} ] }

Booking

Museum tickets for general entrance or special events.

Operations