Download OpenAPI specification:
DAGO Express API supports the management of transport processes in various aspects of the business. Its functionalities include:
Order management: Allows the creation of transport orders. It should be noted that not all fields in the queries are required; some of them are optional, allowing customization of the queries.
Cost Calculation: Users can obtain preliminary transport quotes based on route and vehicle type data, making budgeting easier.
Transport Status Tracking: The API allows the current status of an order to be monitored, providing information on the expected delivery time.
Extensible: The API is designed for future extensibility, allowing new features and integrations to be added according to user needs.
API Extension on Demand: In response to specific customer requirements, it is possible to customise the API by adding new endpoints and functionality to better suit unique business processes.
Security and Authorisation: All operations are secured by an authorisation system, which guarantees the security of data and transactions.
With these functionalities, the Transport API supports operational efficiency, enabling faster and more precise management of logistics processes.
The application provides two main API environments: test and production. Each has a separate database and configuration.
The test environment (sandbox) is designed for testing and verifying API implementations. Here you can freely test your integration without worrying about the impact on your production data.
The production environment handles real data and is used by the application under real conditions. Access to the production environment is only possible for authorized domains, for this please contact us at mail@dagoexpress.com.
Before creating a transport order, the API allows the calculation of an estimated transport price based on the pick-up and delivery location data.
Example request body, including only required fields:
{
"carTypeId": "f1c3de18-a67b-42f1-bb30-bd4ab6745793",
"companyId": "4dc21ad5-ac73-4d70-a050-82034102a286",
"shipments": [
{
"city": "Berlin",
"dateFrom": "2024-10-07T06:00:00.000Z",
"dateTo": "2024-10-07T06:00:00.000Z",
"latitude": 52.439905,
"longitude": 13.532273,
"zipCode": "12489",
"type": "COLLECTION",
"countryCode": "DE",
"address": "Josef-Orlopp-Straße"
},
{
"city": "Dortmund",
"dateFrom": "2024-10-07T06:00:00.000Z",
"dateTo": "2024-10-07T06:00:00.000Z",
"latitude": 51.495796,
"longitude": 7.557805,
"zipCode": "44287",
"type": "DELIVERY",
"countryCode": "DE",
"address": "Germaniastraße 56"
}
]
}
Fields explanation:
carTypeId - Id of the car you want to calculate the price for
companyId - Id of your company
shipments - List of shipments
address, city, zipCode, countryCode, latitude, longitude - Address details of the shipment
dateFrom, dateTo - Time window for the shipment
type - Type of the shipment (COLLECTION or DELIVERY)
Example request body, including only required fields:
{
"carTypeId": "f1c3de18-a67b-42f1-bb30-bd4ab6745793",
"countryCode": "DE",
"shipments": [
{
"city": "Berlin",
"dateFrom": "2024-10-07T06:00:00.000Z",
"dateTo": "2024-10-07T06:00:00.000Z",
"latitude": 52.439905,
"longitude": 13.532273,
"zipCode": "12489",
"type": "COLLECTION",
"countryCode": "DE",
"address": "Josef-Orlopp-Straße"
},
{
"city": "Dortmund",
"dateFrom": "2024-10-07T06:00:00.000Z",
"dateTo": "2024-10-07T06:00:00.000Z",
"latitude": 51.495796,
"longitude": 7.557805,
"zipCode": "44287",
"type": "DELIVERY",
"countryCode": "DE",
"address": "Germaniastraße 56"
}
]
}
Fields explanation:
carTypeId - Id of the car you want to calculate the price for
countryCode - Country code of your company
shipments - List of shipments
address, city, zipCode, countryCode, latitude, longitude - Address details of the shipment
dateFrom, dateTo - Time window for the shipment
type - Type of the shipment (COLLECTION or DELIVERY)
Example request body, including only required fields:
{
"carTypeId": "0175b5bb-1e21-4493-939d-fbe0abc2e1b6",
"companyId": "4dc21ad5-ac73-4d70-a050-82034102a286",
"shipments": [
{
"dateFrom": "2024-10-05T06:00:00.000Z",
"latitude": 52.439905,
"longitude": 13.532273,
"type": "COLLECTION",
"countryCode": "DE",
"zipCode": "12489"
},
{
"dateFrom": "2024-10-07T06:00:00.000Z",
"latitude": 51.495796,
"longitude": 7.557805,
"type": "DELIVERY",
"countryCode": "DE",
"zipCode": "44287"
}
]
}
Fields explanation:
carTypeId - Id of the car you want to calculate the price for
companyId - Id of your company
zipCode, countryCode, latitude, longitude - Address details of the shipment
dateFrom - Start date of time window for the shipment
type - Type of the shipment (COLLECTION or DELIVERY)
API allows the selection of transport vehicles suitable for different types of cargo. Each type of vehicle has specific parameters that determine its capacity and purpose.
[Type: Id]
When creating a transport order, you have the option to add additional services that can increase the value and customization of the service. Each of these services can be optionally selected during order creation to better meet specific logistical requirements.
| page | number >= 1 Default: 1 Current page |
| limit | number >= 1 Default: 10 Maximum number of elements per page |
| type | string Enum: "TRANSPORT_ORDER" "TRUCK" "EXPRESS" "COMMON" Filter the list based on type |
| carTypeId | string The id of the car for which to return the list of additional services - UUID_V4 |
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
{- "data": [
- {
- "createdAt": "string",
- "id": "string",
- "modifiedAt": "string",
- "name": "string",
- "order": 0,
- "price": 0,
- "serviceType": "NEUTRALIZATION",
- "showOnWebsite": true,
- "tips": "string",
- "undeletable": true
}
], - "meta": {
- "current_page": 0,
- "last_page": 0,
- "per_page": 0,
- "total": 0
}
}List of available cars of type EXPRESS.
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
[- {
- "additionalSurcharge": 0,
- "additionalSurchargePercent": 0,
- "attributes": [
- {
- "createdAt": "string",
- "functionality": "CAR_TYPE",
- "icon": "AVAILABLE",
- "id": "string",
- "isActive": true,
- "modifiedAt": "string",
- "order": 0,
- "text": {
- "bg": "string",
- "de": "string",
- "dk": "string",
- "ee": "string",
- "en": "string",
- "es": "string",
- "fi": "string",
- "fr": "string",
- "hu": "string",
- "it": "string",
- "lt": "string",
- "lv": "string",
- "nl": "string",
- "pl": "string",
- "pt": "string",
- "ru": "string",
- "se": "string",
- "si": "string",
- "sk": "string"
}
}
], - "calculatorDisplayTexts": {
- "bg": "string",
- "de": "string",
- "dk": "string",
- "ee": "string",
- "en": "string",
- "es": "string",
- "fi": "string",
- "fr": "string",
- "hu": "string",
- "it": "string",
- "lt": "string",
- "lv": "string",
- "nl": "string",
- "pl": "string",
- "pt": "string",
- "ru": "string",
- "se": "string",
- "si": "string",
- "sk": "string"
}, - "carCategory": "EXPRESS",
- "createdAt": "string",
- "description": "string",
- "hintText": "string",
- "id": "string",
- "incomingCarType": "MINIVAN",
- "listOrder": 0,
- "loadAreaHeight": 0,
- "loadAreaLength": 0,
- "loadAreaWidth": 0,
- "loadTimeInMinutes": 0,
- "maxLoadCapacity": 0,
- "maxSpeedKmPerHour": 0,
- "modifiedAt": "string",
- "orderType": "MAIN",
- "type": "KASTENWAGEN_ODER_PLANEN_BUS",
- "volume": 0
}
]List of available cars of type TRUCK.
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
[- {
- "additionalServices": [
- {
- "createdAt": "string",
- "id": "string",
- "modifiedAt": "string",
- "name": "string",
- "order": 0,
- "price": 0,
- "serviceType": "NEUTRALIZATION",
- "showOnWebsite": true,
- "tips": "string",
- "undeletable": true
}
], - "additionalSurcharge": 0,
- "additionalSurchargePercent": 0,
- "attributes": [
- {
- "createdAt": "string",
- "functionality": "CAR_TYPE",
- "icon": "AVAILABLE",
- "id": "string",
- "isActive": true,
- "modifiedAt": "string",
- "order": 0,
- "text": {
- "bg": "string",
- "de": "string",
- "dk": "string",
- "ee": "string",
- "en": "string",
- "es": "string",
- "fi": "string",
- "fr": "string",
- "hu": "string",
- "it": "string",
- "lt": "string",
- "lv": "string",
- "nl": "string",
- "pl": "string",
- "pt": "string",
- "ru": "string",
- "se": "string",
- "si": "string",
- "sk": "string"
}
}
], - "calculatorDisplayTexts": {
- "bg": "string",
- "de": "string",
- "dk": "string",
- "ee": "string",
- "en": "string",
- "es": "string",
- "fi": "string",
- "fr": "string",
- "hu": "string",
- "it": "string",
- "lt": "string",
- "lv": "string",
- "nl": "string",
- "pl": "string",
- "pt": "string",
- "ru": "string",
- "se": "string",
- "si": "string",
- "sk": "string"
}, - "carCategory": "EXPRESS",
- "createdAt": "string",
- "description": "string",
- "hintText": "string",
- "id": "string",
- "incomingCarType": "MINIVAN",
- "listOrder": 0,
- "loadAreaHeight": 0,
- "loadAreaLength": 0,
- "loadAreaWidth": 0,
- "loadTimeInMinutes": 0,
- "maxLoadCapacity": 0,
- "maxSpeedKmPerHour": 0,
- "modifiedAt": "string",
- "orderType": "MAIN",
- "type": "KASTENWAGEN_ODER_PLANEN_BUS",
- "volume": 0
}
]List of available time windows for the selected car.
Important
Time slots enable transport to be optimized and deliveries to be planned precisely according to logistical requirements. Transport carried out by truck requires several important factors to be taken into account, such as the time to organise the truck and the driver's working time. These parameters affect the time windows, which must be planned accordingly. Use this method to retrieve the nearest feasible time windows for loading and unloading.
Earliest time window of 6h on a given day -> 08:00:00 - 14:00:00
Latest time window of 6h on a given day -> 12:00:00 - 18:00:00
Earliest time window of 4h on a given day -> 08:00:00 - 12:00:00
Latest time window of 4h on a given day -> 14:00:00 - 18:00:00
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
required | Array of objects (TimeSlotShipmentDTO) The id of the car for which to return the list of time slots - UUID_V4 |
{- "shipments": [
- {
- "countryCode": "st",
- "dateFrom": "string",
- "dateTo": "string",
- "latitude": 90,
- "longitude": 180,
- "order": 1,
- "timezone": "Europe/Berlin",
- "type": "COLLECTION"
}
]
}[- {
- "carSpeedInKmPerHour": 0,
- "carTypeId": "string",
- "distanceInKm": 0,
- "loadingDate": "string",
- "loadingDateTimezone": "string",
- "loadingTimeSlots": [
- {
- "additionalPriceMinorUnits": 0,
- "id": "string",
- "isActive": true,
- "shipmentType": "COLLECTION",
- "timeSlots": [
- {
- "dateFrom": "string",
- "dateTo": "string",
- "id": "string",
- "isActive": true
}
], - "type": "FIXED"
}
], - "minimalLoadingDate": "string",
- "roadFullTimeInMinutes": 0,
- "routeCountries": [
- "string"
], - "unloadingDate": "string",
- "unloadingDateTimezone": "string",
- "unloadingDays": [
- {
- "isDayOff": true,
- "unloadingDate": { },
- "unloadingTimeSlots": [
- {
- "additionalPriceMinorUnits": 0,
- "id": "string",
- "isActive": true,
- "shipmentType": "COLLECTION",
- "timeSlots": [
- {
- "dateFrom": "string",
- "dateTo": "string",
- "id": "string",
- "isActive": true
}
], - "type": "FIXED"
}
]
}
], - "unloadingTimeSlots": [
- {
- "additionalPriceMinorUnits": 0,
- "id": "string",
- "isActive": true,
- "shipmentType": "COLLECTION",
- "timeSlots": [
- {
- "dateFrom": "string",
- "dateTo": "string",
- "id": "string",
- "isActive": true
}
], - "type": "FIXED"
}
]
}
]List of days on which the selected car type is not available. Unavailable days for trucks allow specific days to be excluded from the collection and delivery schedule.
| carTypeId required | string The id of the car for which to return the list of holidays - UUID_V4 |
| countryCodes required | Array of strings List of country codes for which to return the list of holidays |
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
[- {
- "date": "string",
- "id": "string"
}
]Use this method to calculate the price of transport using express cars. It is necessary to enter the id of your company, the id of the car for which the price is to be calculated and the points that determine the route, optionally you can enter the id of additional services.
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
| additionalServicesIds | Array of strings The IDs of additional services to be attached to the transport order - Each string is UUID_V4 |
| carTypeId required | string The id of the car for which the price is calculated - UUID_V4 |
| companyId required | string The id of your company - UUID_V4 |
| countryCode | object |
required | Array of objects (CreateShipmentDTO) List of stops of the transport order |
| totalWeight | number [ 0.01 .. 9999999.99 ] |
object Transport insurance details | |
| zeroVat | boolean |
{- "additionalServicesIds": [
- "string"
], - "carTypeId": "string",
- "companyId": "string",
- "countryCode": { },
- "shipments": [
- {
- "address": "string",
- "city": "string",
- "countryCode": "st",
- "dateFrom": "string",
- "dateTo": "string",
- "latitude": 90,
- "longitude": 180,
- "order": 1,
- "type": "COLLECTION",
- "zipCode": "string"
}
], - "totalWeight": 0.01,
- "transportInsurance": {
- "comment": "string",
- "goodsValue": 1
}, - "zeroVat": true
}{- "accountNumber": "MWST_NINETEEN_PERCENT",
- "additionalCarTypesSurcargePercent": 0,
- "additionalServicesSurcharge": 0,
- "carPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "carTypesSurcharge": 0,
- "countryCodes": [
- { }
], - "daySurchargePercent": 0,
- "distanceInKm": 0,
- "errorCode": 0,
- "errorMessage": "string",
- "estimatedFirstCollectionDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "estimatedLastDeliveryDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "exchangeProposedPrice": 0,
- "expectedTravelTime": "string",
- "freightPrice": 0,
- "fullPrice": 0,
- "fullPriceGross": 0,
- "fullPriceWithoutDiscount": 0,
- "insuranceCost": 0,
- "legs": { },
- "loadsAdditionalSurcharge": 0,
- "mainCarTypeId": "string",
- "priceListType": "SHORT_DISTANCE",
- "pricePerKm": 0,
- "roadTimeInMinutes": 0,
- "routeCountries": [
- { }
], - "similarTransportsNumber": 0,
- "tasks": [
- {
- "description": "string",
- "id": "string",
- "link": "string",
- "type": "string"
}
], - "taxRate": 0,
- "truckPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "zipCodeSurcharges": 0
}| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
| additionalServicesIds | Array of strings The IDs of additional services to be attached to the transport order - Each string is UUID_V4 |
| carTypeId required | string The id of the car for which the price is calculated - UUID_V4 |
| countryCode required | object <= 2 characters The country of the user calculating the price - ISO 3166-1 alpha-2 code |
required | Array of objects (CreateShipmentDTO) List of stops of the transport order |
| totalWeight | number [ 0.01 .. 9999999.99 ] |
object Transport insurance details | |
| zeroVat | boolean |
{- "additionalServicesIds": [
- "string"
], - "carTypeId": "string",
- "countryCode": { },
- "shipments": [
- {
- "address": "string",
- "city": "string",
- "countryCode": "st",
- "dateFrom": "string",
- "dateTo": "string",
- "latitude": 90,
- "longitude": 180,
- "order": 1,
- "type": "COLLECTION",
- "zipCode": "string"
}
], - "totalWeight": 0.01,
- "transportInsurance": {
- "comment": "string",
- "goodsValue": 1
}, - "zeroVat": true
}{- "accountNumber": "MWST_NINETEEN_PERCENT",
- "additionalCarTypesSurcargePercent": 0,
- "additionalServicesSurcharge": 0,
- "carPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "carTypesSurcharge": 0,
- "countryCodes": [
- { }
], - "daySurchargePercent": 0,
- "distanceInKm": 0,
- "errorCode": 0,
- "errorMessage": "string",
- "estimatedFirstCollectionDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "estimatedLastDeliveryDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "exchangeProposedPrice": 0,
- "expectedTravelTime": "string",
- "freightPrice": 0,
- "fullPrice": 0,
- "fullPriceGross": 0,
- "fullPriceWithoutDiscount": 0,
- "insuranceCost": 0,
- "legs": { },
- "loadsAdditionalSurcharge": 0,
- "mainCarTypeId": "string",
- "priceListType": "SHORT_DISTANCE",
- "pricePerKm": 0,
- "roadTimeInMinutes": 0,
- "routeCountries": [
- { }
], - "similarTransportsNumber": 0,
- "tasks": [
- {
- "description": "string",
- "id": "string",
- "link": "string",
- "type": "string"
}
], - "taxRate": 0,
- "truckPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "zipCodeSurcharges": 0
}Use this method to calculate the price of transport using truck cars. It is necessary to enter the id of your company, the id of the car for which the price is to be calculated and the points that determine the route, optionally you can enter the id of additional services.
| Accept-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected response language |
| Content-language required | string Enum: "en" "pl" "de" "fr" "it" "nl" "es" "bg" "dk" "ee" "fi" "hu" "lt" "lv" "pt" "ru" "se" "sk" "si" Expected request language |
| additionalServicesIds | Array of strings The IDs of additional services to be attached to the transport order - Each string is UUID_V4 |
| carTypeId required | string The id of the car for which the price is calculated - UUID_V4 |
| companyId required | string The id of your company - UUID_V4 |
| countryCode | object |
required | Array of objects (CalculateTransportPriceTruckTimeSlotDTO) List of stops of the transport order |
| totalWeight | number [ 0.01 .. 9999999.99 ] |
required | object (CreateTransportInsuranceRequestDTO) |
| zeroVat | boolean |
{- "additionalServicesIds": [
- "string"
], - "carTypeId": "string",
- "companyId": "string",
- "countryCode": { },
- "shipments": [
- {
- "city": "string",
- "countryCode": "st",
- "dateFrom": "string",
- "dateTo": "string",
- "latitude": 90,
- "longitude": 180,
- "order": 1,
- "stopTypeId": "string",
- "timeSlotTypeId": "string",
- "timezone": "Europe/Berlin",
- "type": "COLLECTION",
- "zipCode": "string"
}
], - "totalWeight": 0.01,
- "transportInsurance": {
- "comment": "string",
- "goodsValue": 1
}, - "zeroVat": true
}{- "accountNumber": "MWST_NINETEEN_PERCENT",
- "additionalCarTypesSurcargePercent": 0,
- "additionalServicesSurcharge": 0,
- "carPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "carTypesSurcharge": 0,
- "countryCodes": [
- { }
], - "daySurchargePercent": 0,
- "distanceInKm": 0,
- "errorCode": 0,
- "errorMessage": "string",
- "estimatedFirstCollectionDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "estimatedLastDeliveryDate": {
- "dateFromClient": "string",
- "dateToClient": "string",
- "timeFromClient": "string",
- "timeToClient": "string",
- "type": "COLLECTION"
}, - "exchangeProposedPrice": 0,
- "expectedTravelTime": "string",
- "freightPrice": 0,
- "fullPrice": 0,
- "fullPriceGross": 0,
- "fullPriceWithoutDiscount": 0,
- "insuranceCost": 0,
- "legs": { },
- "loadsAdditionalSurcharge": 0,
- "mainCarTypeId": "string",
- "priceListType": "SHORT_DISTANCE",
- "pricePerKm": 0,
- "roadTimeInMinutes": 0,
- "routeCountries": [
- { }
], - "similarTransportsNumber": 0,
- "tasks": [
- {
- "description": "string",
- "id": "string",
- "link": "string",
- "type": "string"
}
], - "taxRate": 0,
- "truckPrices": [
- {
- "grossPrice": 0,
- "id": "string",
- "listOrder": 0,
- "orderType": "MAIN",
- "type": "string"
}
], - "zipCodeSurcharges": 0
}A list of available postcodes, which supports precise route planning and checking the availability of transport services in a particular region.
| page | number >= 1 Default: 1 Current page |
| limit | number >= 1 Default: 100 Limit elements, default 100 |
| query | string The list can return relevant matches based on the cities and postcodes provided. If you enter the word 'Berl', a list of postcodes is returned where the city begins with the word 'Berl'. |
| country required | string <= 2 characters Use country code like PL, UK, US, etc. |
[- {
- "city": "string",
- "country": "string",
- "id": 0,
- "latitude": 0,
- "longitude": 0,
- "zipCode": "string"
}
]