Get a load
Get a single load by ID.
Authentication: Supports API key and bearer token authentication.
Get a single load by ID.
Authentication: Supports API key and bearer token authentication.
Bearer authentication of the form Bearer <token>, where token is your auth token.
Canonical equipment types used across loads, carriers, and lane preferences.
Uses StrEnum (not the class X(str, Enum) pattern) so that
str(EquipmentType.VAN) and f"{EquipmentType.VAN}" return "VAN"
instead of the default Enum.__str__ of "EquipmentType.VAN". Python
3.12 does not collapse __str__/__format__ for (str, Enum)
subclasses, which would silently corrupt every f-string and Jinja template
that interpolates an equipment type without .value.