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

List loadings

Prod Env
https://www.loadingcalendar.com/api/v1
Prod Env
https://www.loadingcalendar.com/api/v1
GET
https://www.loadingcalendar.com/api/v1
/loadings
Loadings
Returns paginated loadings within a date range (max 31 days).
Both date_from and date_to are required.

Request

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

Responses

🟢200
application/json
Paginated list of loadings
Body

🟠400BadRequest
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.loadingcalendar.com/api/v1/loadings?date_from&date_to&warehouse_id&dock_id&status&direction&registration_plate&reference&page' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "loadings": [
        {
            "id": 0,
            "dock_id": 0,
            "dock_name": "string",
            "warehouse_id": 0,
            "warehouse_name": "string",
            "date": "2026-02-15",
            "time_from": "09:00",
            "time_to": "10:00",
            "duration": 15,
            "loading_duration_id": 0,
            "reference": "ORD-2026-001",
            "cargoson_reference": "string",
            "supplier": "string",
            "goods": "string",
            "carrier": "string",
            "direction": "inbound",
            "status": "new",
            "notes": "string",
            "driver_name": "string",
            "driver_phone": "string",
            "registration_plate": "string",
            "carrier_email": "string",
            "author_email": "string",
            "author_name": "string",
            "started_at": "2026-01-25 12:00",
            "finished_at": "2026-01-25 12:30",
            "actual_duration": 0
        }
    ],
    "meta": {
        "current_page": 1,
        "per_page": 25,
        "total_count": 42,
        "total_pages": 2
    }
}
Previous
Get available time slots
Next
Create a loading
Built with