Path Parameters
The unique identifier of the load
Query Parameters
Filter loads available to a specific carrier ID
Response
HTTP status code
Response body containing the result
The load object
Show Load properties
Show Load properties
Custom identifier for the load
Type of load
Show Available values
Show Available values
owned
- Load that is already ownedcan_get
- Load that can be acquired
List of stops for the load in order of stop sequence
Show Stop properties
Show Stop properties
Type of stop
Show Available values
Show Available values
origin
- Origin locationdestination
- Destination locationpick
- Pickup locationdrop
- Drop-off location
Timestamp for stop window open (format: YYYY-MM-DDTHH:MM:SS without timezone)
Timestamp for stop window close (format: YYYY-MM-DDTHH:MM:SS without timezone)
Maximum buying rate for the load (numeric with up to 2 decimal places)
Current status of the load
Show Available values
Show Available values
at_pickup
- Load is at pickup locationpicked_up
- Load has been picked upat_delivery
- Load is at delivery locationdispatched
- Load has been dispatcheddelivered
- Load has been delivereden_route
- Load is en routein_transit
- Load is in transitcompleted
- Load is completedavailable
- Load is available for bookingcovered
- Load has been coveredunavailable
- Load is unavailable
Whether this is a partial load
Whether this is a hazmat load
Rate posted for carriers (numeric with up to 2 decimal places)
Additional notes about the sale
Branch handling the load
Type of commodity being transported in a human readable format
Weight of the load in pounds (numeric with up to 2 decimal places)
Number of pieces in the load
Total miles for the trip
Dimensions of the load
Integration status information
Equipment type required for the load. Must be one of:
Dry Van
, Reefer
, Flatbed
, Step Deck
, Box Truck
, Power Only
Status Codes
Successfully retrieved the load
Load not found with the specified ID
Multiple loads found with the same ID
Internal server error.
Copy
Ask AI
curl --request GET \
--url 'https://api.example.com/api/v1/loads/LOAD123' \
--header 'Authorization: Bearer API_KEY'
Copy
Ask AI
{
"statusCode": 200,
"body": {
"load": {
"reference_number": "LOAD123",
"contact": {
"name": "John Doe",
"email": "john@example.com",
"phone": "15552220123",
"extension": "123",
"type": "assigned"
},
"type": "owned",
"stops": [
{
"type": "origin",
"location": {
"city": "Chicago",
"state": "IL",
"zip": "60601",
"country": "US"
},
"stop_timestamp_open": "2024-03-20T14:00:00",
"stop_timestamp_close": "2024-03-20T16:00:00"
},
{
"type": "destination",
"location": {
"city": "New York",
"state": "NY",
"zip": "10001",
"country": "US"
},
"stop_timestamp_open": "2024-03-21T14:00:00",
"stop_timestamp_close": "2024-03-21T16:00:00"
}
],
"equipment_type": "Dry Van",
"max_buy": 1500.50,
"status": "available",
"is_partial": false,
"is_hazmat": false,
"posted_carrier_rate": 1200.00,
"weight": 40000,
"number_of_pieces": 100,
"commodity_type": "Automobile Parts",
"sale_notes": "This is a test load",
"dimensions": "53 Feet",
"branch": "Chicago",
"miles": 500,
"bridge": {
"status": "success",
"bridge_load_id": "BRK-456789"
}
}
}
}