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

Get a loading

Prod Env
https://www.loadingcalendar.com/api/v1
Prod Env
https://www.loadingcalendar.com/api/v1
GET
https://www.loadingcalendar.com/api/v1
/loadings/{id}
Loadings
Returns a single loading with its documents.

Request

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

Responses

🟢200
application/json
Loading details
Body

🟠401Unauthorized
🟠404NotFound
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.loadingcalendar.com/api/v1/loadings/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "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,
    "documents": [
        {
            "id": 0,
            "category": "loading_plan",
            "filename": "delivery-note.pdf",
            "content_type": "application/pdf",
            "base64": "string"
        }
    ]
}
Previous
Create a loading
Next
Update a loading
Built with