1. Warehouses
LoadingCalendar API
  • LoadingCalendar API
    • Warehouses
      • List all warehouses
        GET
      • Get a warehouse
        GET
      • Get available time slots
        GET
    • Loadings
      • List loadings
      • Create a loading
      • Get a loading
      • Update a loading
      • Cancel a loading
    • Documents
      • Add a document to a loading
      • Delete a document
  1. Warehouses

List all warehouses

Prod Env
https://www.loadingcalendar.com/api/v1
Prod Env
https://www.loadingcalendar.com/api/v1
GET
https://www.loadingcalendar.com/api/v1
/warehouses
Warehouses
Returns all warehouses for the authenticated company, including their docks and loading durations.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or

Responses

🟢200
application/json
List of warehouses
Body

🟠401Unauthorized
🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.loadingcalendar.com/api/v1/warehouses' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
[
    {
        "id": 0,
        "name": "Main Warehouse",
        "street": "123 Logistics Ave",
        "postcode": "10115",
        "city": "Tallinn",
        "state": "string",
        "country": "Estonia",
        "timezone": "Europe/Tallinn",
        "lead_time": 24,
        "slot_interval": 15,
        "docks": [
            {
                "id": 0,
                "name": "Dock A",
                "description": "string",
                "open_from": "08:00",
                "open_until": "17:00",
                "open_on_weekends": true
            }
        ],
        "loading_durations": [
            {
                "id": 0,
                "description": "Standard unloading",
                "time": 60
            }
        ]
    }
]
Next
Get a warehouse
Built with